negos_app/db/migrate/0078_create_link_contents.rb
2016-02-16 21:09:48 +01:00

25 lines
408 B
Ruby
Executable File

# -*- 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