Files
tonesc-red-packet/tonesc-red-packet/drizzle/0000_complete_shadowcat.sql
2026-01-07 23:22:15 +08:00

10 lines
285 B
SQL

CREATE TABLE "red_packets" (
"id" text PRIMARY KEY NOT NULL,
"count" integer NOT NULL,
"currency_name" text NOT NULL,
"currency_precision" numeric(20, 10) NOT NULL,
"rule" jsonb NOT NULL,
"max_draw_times" integer,
"created_at" timestamp with time zone DEFAULT now() NOT NULL
);