mirror of https://github.com/TZGyn/shortener
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
346 B
SQL
8 lines
346 B
SQL
CREATE TABLE IF NOT EXISTS "stripe_session" (
|
|
"session_id" varchar(255) NOT NULL,
|
|
"user_id" integer NOT NULL,
|
|
"expired" boolean DEFAULT false NOT NULL
|
|
);
|
|
--> statement-breakpoint
|
|
ALTER TABLE "user" ADD COLUMN "plan" varchar(255) DEFAULT 'free' NOT NULL;--> statement-breakpoint
|
|
ALTER TABLE "user" ADD COLUMN "stripe_subscription" varchar(255); |