2014-04-24 14:21:43 +02:00

16 lines
320 B
Ruby

class CreateModerations < ActiveRecord::Migration
def self.up
create_table "moderations" do |t|
t.references :moderatable, polymorphic: true
t.text :data, :null => false
t.text :data_display, :null => false
t.timestamps
end
end
def self.down
drop_table :moderations
end
end