payrejardi_app/db/migrate/20151123220633_create_menu_item_link_contents.rb
Nicolas Bally 3233232f4e initial
2019-02-01 12:07:55 +01:00

23 lines
552 B
Ruby

class CreateMenuItemLinkContents < ActiveRecord::Migration
def change
create_table :menu_item_link_contents do |t|
t.references :menu_item, index: true
t.references :image_file, index: true
t.string :title
t.text :description
t.string :url
t.boolean :popup
t.string :style
t.string :block_type
t.integer :cible_id
t.string :cible_type
t.decimal :proportion, :precision => 15, :scale => 10
t.integer :level
t.timestamps null: false
end
end
end