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
|