Gab-Social/db/migrate/20181213185533_create_account_warning_presets.rb
2019-07-02 03:10:25 -04:00

10 lines
210 B
Ruby

class CreateAccountWarningPresets < ActiveRecord::Migration[5.2]
def change
create_table :account_warning_presets do |t|
t.text :text, null: false, default: ''
t.timestamps
end
end
end