Migration: archives

This commit is contained in:
2022-05-02 23:21:24 +03:00
parent b41deb0812
commit 1a292afa57

View File

@@ -0,0 +1,9 @@
defmodule Runosaari.Repo.Migrations.Archives do
use Ecto.Migration
def change do
alter table("performers") do
add :archived, :integer, null: true
end
end
end