chore: initialized repository
This commit is contained in:
6
drizzle/0001_heavy_havok.sql
Normal file
6
drizzle/0001_heavy_havok.sql
Normal file
@@ -0,0 +1,6 @@
|
||||
CREATE TYPE "public"."gender" AS ENUM('male', 'female');--> statement-breakpoint
|
||||
CREATE TABLE IF NOT EXISTS "castrations" (
|
||||
"id" integer PRIMARY KEY GENERATED ALWAYS AS IDENTITY (sequence name "castrations_id_seq" INCREMENT BY 1 MINVALUE 1 MAXVALUE 2147483647 START WITH 1 CACHE 1),
|
||||
"gender" "gender" NOT NULL,
|
||||
"timestamp" timestamp DEFAULT now() NOT NULL
|
||||
);
|
||||
Reference in New Issue
Block a user