From 377a864f115bd198f8f422e5c741f91dccd2ebc5 Mon Sep 17 00:00:00 2001 From: codevictory Date: Sun, 25 Apr 2021 00:08:39 +0300 Subject: [PATCH] Fix to migration. --- priv/repo/migrations/20210424202639_fix_performance_fields.exs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/priv/repo/migrations/20210424202639_fix_performance_fields.exs b/priv/repo/migrations/20210424202639_fix_performance_fields.exs index 204a25d..1b8124c 100644 --- a/priv/repo/migrations/20210424202639_fix_performance_fields.exs +++ b/priv/repo/migrations/20210424202639_fix_performance_fields.exs @@ -6,7 +6,7 @@ defmodule Runosaari.Repo.Migrations.FixPerformanceFields do remove :notes remove :time remove :description - add :description, :string, size: 2000 + add :desc, :string, size: 2000 add :name, :string end end