From d9cfe26f347ed6c37b8027b11db8de2e1cf1e5f9 Mon Sep 17 00:00:00 2001 From: Thomas Citharel Date: Wed, 6 Jun 2018 18:25:57 +0200 Subject: [PATCH] Remove duplicate migration Signed-off-by: Thomas Citharel --- ...20180126094416_add_avatar_and_banner_to_account.exs | 10 ---------- 1 file changed, 10 deletions(-) delete mode 100644 priv/repo/migrations/20180126094416_add_avatar_and_banner_to_account.exs diff --git a/priv/repo/migrations/20180126094416_add_avatar_and_banner_to_account.exs b/priv/repo/migrations/20180126094416_add_avatar_and_banner_to_account.exs deleted file mode 100644 index b0ddf1d18..000000000 --- a/priv/repo/migrations/20180126094416_add_avatar_and_banner_to_account.exs +++ /dev/null @@ -1,10 +0,0 @@ -defmodule Eventos.Repo.Migrations.AddAvatarAndBannerToAccount do - use Ecto.Migration - - def change do - alter table(:accounts) do - add :avatar_url, :string, null: true - add :banner_url, :string, null: true - end - end -end