From 43d122a443ac34821adc90ac47fe57e58dcf50f9 Mon Sep 17 00:00:00 2001 From: Chris Veilleux Date: Mon, 18 Feb 2019 13:41:10 -0600 Subject: [PATCH] changed username to display_name --- db/mycroft/account_schema/tables/account.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/mycroft/account_schema/tables/account.sql b/db/mycroft/account_schema/tables/account.sql index 525a2af0..83005482 100644 --- a/db/mycroft/account_schema/tables/account.sql +++ b/db/mycroft/account_schema/tables/account.sql @@ -1,7 +1,7 @@ CREATE TABLE account.account ( id uuid PRIMARY KEY DEFAULT gen_random_uuid(), email_address text NOT NULL UNIQUE, - username text NOT NULL UNIQUE, + display_name text NOT NULL UNIQUE, password text, insert_ts TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP );