11 lines
184 B
Ruby
11 lines
184 B
Ruby
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
|