Skip to content

Commit

Permalink
Missed moving the extension_roles pk first
Browse files Browse the repository at this point in the history
  • Loading branch information
cohansen committed Oct 13, 2023
1 parent 7ed640e commit 16336d1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deployment/hasura/migrations/AerieUI/2_extensions/up.sql
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ create trigger extensions_set_timestamp
execute function extensions_set_updated_at();

create table extension_roles (
extension_id integer not null,
id integer generated always as identity,
extension_id integer not null,
role text not null,

constraint extension_roles_primary_key primary key (id),
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
create table extension_roles (
extension_id integer not null,
id integer generated always as identity,
extension_id integer not null,
role text not null,

constraint extension_roles_primary_key primary key (id),
Expand Down

0 comments on commit 16336d1

Please sign in to comment.