Skip to content

Commit

Permalink
Remove spaces to pass prettier formatting check
Browse files Browse the repository at this point in the history
  • Loading branch information
baptiste00001 committed Dec 22, 2024
1 parent bdb89df commit 311ab08
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/pages/getting-started/adapters/pg.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ CREATE TABLE users
email VARCHAR(255) UNIQUE,
"emailVerified" TIMESTAMPTZ,
image TEXT,

PRIMARY KEY (id)
);

Expand All @@ -227,17 +227,17 @@ CREATE TABLE accounts
scope TEXT,
session_state TEXT,
token_type TEXT,

PRIMARY KEY (id)
);

CREATE TABLE sessions
(
id SERIAL,
"userId" INTEGER NOT NULL REFERENCES users (id) ON DELETE CASCADE,
expires TIMESTAMPTZ NOT NULL,
"sessionToken" VARCHAR(255) UNIQUE NOT NULL,

PRIMARY KEY (id)
);

Expand All @@ -246,7 +246,7 @@ CREATE TABLE verification_token
identifier TEXT NOT NULL,
expires TIMESTAMPTZ NOT NULL,
token TEXT NOT NULL,

PRIMARY KEY (identifier, token)
);

Expand Down

0 comments on commit 311ab08

Please sign in to comment.