Files
danbooru/db/migrate/20110722211855_create_mod_actions.rb
2011-07-22 17:34:43 -04:00

10 lines
240 B
Ruby

class CreateModActions < ActiveRecord::Migration
def change
create_table :mod_actions do |t|
t.column :creator_id, :integer, :null => false
t.column :description, :text, :null => false
t.timestamps
end
end
end