maisonarbre_app/db/migrate/0078_create_link_contents.rb
Nicolas Bally 1fa250e0e4 Initial
2011-07-15 12:29:09 +02:00

26 lines
470 B
Ruby

# -*- encoding : utf-8 -*-
class CreateLinkContents < ActiveRecord::Migration
def self.up
create_table :link_contents do |t|
t.integer :type
t.string :name
t.string :title
t.boolean :popup
t.string :url
t.string :style
t.integer :cible_id
t.string :cible_type
t.timestamps
end
ContentType.create(:slug => "LinkContent", :name => "Lien")
end
def self.down
drop_table :link_contents
end
end