From fcd0f78fd150996b5ddc2bd78f341d9b5da67618 Mon Sep 17 00:00:00 2001 From: Ron Rise Date: Fri, 2 Jan 2026 15:30:33 -0500 Subject: [PATCH] migrations --- .../000001_create_users_table.down.sql | 9 +++++---- front-end/index.html | 2 +- front-end/src/pages/login.vue | 20 ++++++++++++++++++- 3 files changed, 25 insertions(+), 6 deletions(-) diff --git a/db/migrations/000001_create_users_table.down.sql b/db/migrations/000001_create_users_table.down.sql index b4e1d0d..77bdbe5 100644 --- a/db/migrations/000001_create_users_table.down.sql +++ b/db/migrations/000001_create_users_table.down.sql @@ -1,7 +1,8 @@ drop table if exists client_users; -drop table if exists client_scopes; -drop table if exists scopes; drop table if exists client_redirect_uris; -drop table if exists clients; +drop table if exists client_scopes; +drop table if exists user_scopes; + +drop table if exists scopes; drop table if exists users; -drop table if exists user_scopes; \ No newline at end of file +drop table if exists clients; \ No newline at end of file diff --git a/front-end/index.html b/front-end/index.html index 0eb00ec..9e8f8fb 100644 --- a/front-end/index.html +++ b/front-end/index.html @@ -4,7 +4,7 @@ - Career UpRising - Login + Auth Service - Login diff --git a/front-end/src/pages/login.vue b/front-end/src/pages/login.vue index b261fd5..cd2e570 100644 --- a/front-end/src/pages/login.vue +++ b/front-end/src/pages/login.vue @@ -4,7 +4,8 @@