mirror of
https://git.kescher.at/CatCatNya/catstodon.git
synced 2024-11-22 17:38:07 +01:00
13 lines
287 B
Ruby
13 lines
287 B
Ruby
# frozen_string_literal: true
|
|
|
|
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
|