12 lines
241 B
Ruby
12 lines
241 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|