idn_app/db/migrate/0078_create_link_contents.rb
Nicolas Bally b5690bc6f2 initial
2016-07-25 15:55:11 +02:00

25 lines
408 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
end
def self.down
drop_table :link_contents
end
end