10 lines
245 B
Ruby
10 lines
245 B
Ruby
class CreateModActions < ActiveRecord::Migration[4.2]
|
|
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
|