1
0
mirror of https://github.com/glitch-soc/mastodon.git synced 2025-02-14 22:53:53 -05:00
tootlab-mastodon/db/migrate/20210221045109_create_rules.rb
2021-02-21 19:50:12 +01:00

12 lines
256 B
Ruby

class CreateRules < ActiveRecord::Migration[5.2]
def change
create_table :rules do |t|
t.integer :priority, null: false, default: 0
t.datetime :deleted_at
t.text :text, null: false, default: ''
t.timestamps
end
end
end