From 91616a1612c305bffc02683de2d1e1ab1b1b1d7b Mon Sep 17 00:00:00 2001 From: Nathaniel Date: Tue, 5 Jul 2022 15:01:32 -0600 Subject: [PATCH 1/3] Updates .gitignore to ignore all WebStorm project files --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 0e26a0cb..b15745ec 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,5 @@ env node_modules coverage + +.idea/ From 9fcac8f3187f27b73a7f1283c621ac1c7559dbfe Mon Sep 17 00:00:00 2001 From: Nathaniel Date: Tue, 5 Jul 2022 15:01:47 -0600 Subject: [PATCH 2/3] Adds the app owner table to the DB schema --- sql/create.sql | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/sql/create.sql b/sql/create.sql index 70917631..5a995dbc 100755 --- a/sql/create.sql +++ b/sql/create.sql @@ -659,6 +659,14 @@ begin primary key (app, service, resource_type, action) -- We only store the latest recommendation for the app, service, resource_type, and action ); + create table if not exists app_owner + ( + id uuid not null primary key, + owner_name text not null, + owner_email text not null, + app uuid not null references apps(app) + ); + alter table recommendations add column if not exists deleted bool not null default false; -- create default regions and stacks From 36b462d2e98fe6f60b9d60bd81c26f23689fefed Mon Sep 17 00:00:00 2001 From: Nathaniel Date: Thu, 7 Jul 2022 13:46:28 -0600 Subject: [PATCH 3/3] Empty