Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@
env
node_modules
coverage

.idea/
8 changes: 8 additions & 0 deletions sql/create.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down