From 62b48e5fab6b51f82e1e2acbf7e3c6c64fb344d9 Mon Sep 17 00:00:00 2001 From: shibao Date: Fri, 10 Sep 2021 00:29:20 -0400 Subject: [PATCH] fixup! cleanup user and user token models --- priv/repo/migrations/20210814225804_create_users_auth_tables.exs | 1 + 1 file changed, 1 insertion(+) diff --git a/priv/repo/migrations/20210814225804_create_users_auth_tables.exs b/priv/repo/migrations/20210814225804_create_users_auth_tables.exs index ab56af1..12f6d33 100644 --- a/priv/repo/migrations/20210814225804_create_users_auth_tables.exs +++ b/priv/repo/migrations/20210814225804_create_users_auth_tables.exs @@ -9,6 +9,7 @@ defmodule Cannery.Repo.Migrations.CreateUsersAuthTables do add :email, :citext, null: false add :hashed_password, :string, null: false add :confirmed_at, :naive_datetime + add :role, :string timestamps() end