rosa-build/db/migrate/20110312133559_create_arche...

16 lines
253 B
Ruby
Raw Permalink Normal View History

2011-03-15 21:52:27 +00:00
class CreateArches < ActiveRecord::Migration
def self.up
create_table :arches do |t|
2014-01-21 04:51:49 +00:00
t.string :name, null: false
2011-03-15 21:52:27 +00:00
t.timestamps
end
2014-01-21 04:51:49 +00:00
add_index :arches, :name, unique: true
2011-03-15 21:52:27 +00:00
end
def self.down
drop_table :arches
end
end