mastodon/db/migrate/20181213185533_create_accou...

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