Gab-Social/db/migrate/20181213185533_create_account_warning_presets.rb

10 lines
210 B
Ruby
Raw Normal View History

2019-07-02 07:10:25 +00:00
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