From 1a292afa570378bfb48debf85545fae18fc17b1d Mon Sep 17 00:00:00 2001 From: codevictory Date: Mon, 2 May 2022 23:21:24 +0300 Subject: [PATCH] Migration: archives --- priv/repo/migrations/20220502195411_archives.exs | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 priv/repo/migrations/20220502195411_archives.exs diff --git a/priv/repo/migrations/20220502195411_archives.exs b/priv/repo/migrations/20220502195411_archives.exs new file mode 100644 index 0000000..317a231 --- /dev/null +++ b/priv/repo/migrations/20220502195411_archives.exs @@ -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