boissier_app/db/migrate/20110630181623_create_img_link_contents.rb
2011-07-08 17:38:26 +02:00

22 lines
436 B
Ruby

class CreateImgLinkContents < ActiveRecord::Migration
def self.up
create_table :img_link_contents do |t|
t.text :title
t.text :description
t.references :image_file
t.integer :cible_id
t.string :cible_type
t.boolean :with_cible
t.timestamps
end
ContentType.create(:slug => "ImgLinkContent", :name => "Lien avec image")
end
def self.down
drop_table :img_link_contents
end
end