Skip to content
This repository has been archived by the owner on Apr 26, 2024. It is now read-only.

Commit

Permalink
grasping at straws
Browse files Browse the repository at this point in the history
  • Loading branch information
H-Shay committed Jun 16, 2023
1 parent 7bc1a57 commit 82d5616
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ def run_create(cur: LoggingTransaction, database_engine: BaseDatabaseEngine) ->
user_id text,
displayname text,
avatar_url text,
UNIQUE (full_user_id),
UNIQUE (user_id)
UNIQUE (full_user_id)
)
"""
cur.execute(create_sql)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ def run_create(cur: LoggingTransaction, database_engine: BaseDatabaseEngine) ->
user_id text,
filter_id bigint NOT NULL,
filter_json bytea NOT NULL,
UNIQUE (full_user_id),
UNIQUE (user_id)
UNIQUE (full_user_id)
)
"""
cur.execute(create_sql)
Expand Down

0 comments on commit 82d5616

Please sign in to comment.