2023-08-06 17:49:58 -07:00
|
|
|
class CreateClosetLists < ActiveRecord::Migration[4.2]
|
2011-07-26 17:27:23 -07:00
|
|
|
def self.up
|
|
|
|
create_table :closet_lists do |t|
|
|
|
|
t.string :name
|
|
|
|
t.text :description
|
|
|
|
t.integer :user_id
|
|
|
|
t.boolean :hangers_owned, :null => false
|
|
|
|
|
|
|
|
t.timestamps
|
|
|
|
end
|
|
|
|
|
2011-07-29 07:52:04 -07:00
|
|
|
add_column :closet_hangers, :list_id, :integer
|
2011-07-26 17:27:23 -07:00
|
|
|
end
|
|
|
|
|
|
|
|
def self.down
|
|
|
|
drop_table :closet_lists
|
|
|
|
|
2011-07-29 07:52:04 -07:00
|
|
|
remove_column :closet_hangers, :list_id
|
2011-07-26 17:27:23 -07:00
|
|
|
end
|
|
|
|
end
|
|
|
|
|