Survival links.

This commit is contained in:
codevictory
2021-07-03 18:05:27 +03:00
parent 32daf368c9
commit eb93d7afc1
9 changed files with 35 additions and 9 deletions

View File

@@ -0,0 +1,9 @@
defmodule Runosaari.Repo.Migrations.SurvivalLinks do
use Ecto.Migration
def change do
alter table("survival_items") do
add :link, :string, null: true
end
end
end