more skelaton stuff

This commit is contained in:
Steve Coast 2006-07-29 10:09:52 +00:00
parent a46c4083ae
commit d2877982a2
6 changed files with 268 additions and 1 deletions

View file

@ -0,0 +1,11 @@
class CreateNodes < ActiveRecord::Migration
def self.up
create_table :nodes do |t|
# t.column :name, :string
end
end
def self.down
drop_table :nodes
end
end