mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-05 14:36:04 +00:00
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
|