20181213185533_create_account_warning_presets.rb 241 B

1234567891011
  1. # frozen_string_literal: true
  2. class CreateAccountWarningPresets < ActiveRecord::Migration[5.2]
  3. def change
  4. create_table :account_warning_presets do |t|
  5. t.text :text, null: false, default: ''
  6. t.timestamps
  7. end
  8. end
  9. end