Skip to content

Commit

Permalink
remove extra sql statements
Browse files Browse the repository at this point in the history
  • Loading branch information
xerosanyam committed May 22, 2024
1 parent 57fe6cb commit 627b074
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions src/lib/db/sql/auth.sql
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,6 @@ CREATE TABLE remfo.user_session(
user_id uuid NOT NULL REFERENCES remfo.auth_user(id)
);

ALTER TABLE remfo.auth_user
ADD COLUMN picture text;

SELECT
*
FROM
Expand All @@ -36,9 +33,6 @@ WHERE
INSERT INTO remfo.auth_user(id, github_id, username)
VALUES ("12_id", "12_github_id", "12_username");

ALTER TABLE remfo.auth_user
ADD COLUMN picture text;

SELECT
*
FROM
Expand Down

0 comments on commit 627b074

Please sign in to comment.