Skip to content

Commit

Permalink
Update articles.sql
Browse files Browse the repository at this point in the history
  • Loading branch information
h0ethan04 authored Dec 7, 2024
1 parent d35ec80 commit 575cb2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/db/schema/articles.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
CREATE TABLE IF NOT EXISTS articles (
id SERIAL PRIMARY KEY,
id INTEGER PRIMARY KEY NOT NULL GENERATED ALWAYS AS IDENTITY ( INCREMENT 1 START 1 MINVALUE 1 MAXVALUE 2147483647 CACHE 1 ),
s3_url VARCHAR(256) NOT NULL,
description TEXT NOT NULL,
media_url VARCHAR(256) NOT NULL
Expand Down

0 comments on commit 575cb2b

Please sign in to comment.