mirror of
https://github.com/SrIzan10/spongebin.git
synced 2026-05-01 11:05:09 +00:00
8 lines
200 B
SQL
8 lines
200 B
SQL
CREATE TABLE "paste" (
|
|
"id" uuid PRIMARY KEY DEFAULT gen_random_uuid() NOT NULL,
|
|
"content" text NOT NULL,
|
|
"language" text NOT NULL,
|
|
"theme" text NOT NULL,
|
|
"created_at" timestamp DEFAULT now()
|
|
);
|