about summary refs log tree commit diff
path: root/db/migrate/20181213185533_create_account_warning_presets.rb
blob: 9c81f1b5e6a522aa143a37fe7ab60c4bb747167c (plain) (blame)
1
2
3
4
5
6
7
8
9
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