mirror of
https://framagit.org/tykayn/mastodon.git
synced 2023-08-25 08:33:12 +02: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
|