mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2025-02-07 14:52:23 +00:00
12 lines
260 B
Elixir
12 lines
260 B
Elixir
defmodule Pleroma.Repo.Migrations.CreateRules do
|
|
use Ecto.Migration
|
|
|
|
def change do
|
|
create_if_not_exists table(:rules) do
|
|
add(:priority, :integer, default: 0, null: false)
|
|
add(:text, :text, null: false)
|
|
|
|
timestamps()
|
|
end
|
|
end
|
|
end
|