mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-10-31 20:14:26 +00:00
10 lines
210 B
Ruby
10 lines
210 B
Ruby
|
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
|