| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136 |
- CREATE TABLE "accounts" (
- "id" varchar(30) PRIMARY KEY NOT NULL,
- "user_id" varchar(30) NOT NULL,
- "account_id" text NOT NULL,
- "provider_id" text NOT NULL,
- "access_token" text,
- "refresh_token" text,
- "id_token" text,
- "access_token_expires_at" timestamp with time zone,
- "refresh_token_expires_at" timestamp with time zone,
- "scope" text,
- "password" text,
- "created_at" timestamp with time zone DEFAULT now() NOT NULL,
- "updated_at" timestamp with time zone DEFAULT now() NOT NULL
- );
- --> statement-breakpoint
- CREATE TABLE "api_keys" (
- "id" varchar(30) PRIMARY KEY NOT NULL,
- "project_id" varchar(30) NOT NULL,
- "created_by" varchar(30) NOT NULL,
- "name" text NOT NULL,
- "hash" text NOT NULL,
- "suffix" varchar(4) NOT NULL,
- "last_used_at" timestamp with time zone,
- "expires_at" timestamp with time zone,
- "created_at" timestamp with time zone DEFAULT now() NOT NULL,
- "revoked_at" timestamp with time zone
- );
- --> statement-breakpoint
- CREATE TABLE "audit_logs" (
- "id" varchar(30) PRIMARY KEY NOT NULL,
- "actor_id" varchar(30),
- "project_id" varchar(30),
- "action" text NOT NULL,
- "ip_hash" varchar(64),
- "user_agent" text,
- "metadata" jsonb,
- "created_at" timestamp with time zone DEFAULT now() NOT NULL
- );
- --> statement-breakpoint
- CREATE TABLE "deployments" (
- "id" varchar(30) PRIMARY KEY NOT NULL,
- "project_id" varchar(30) NOT NULL,
- "triggered_by" varchar(30),
- "api_key_id" varchar(30),
- "status" text DEFAULT 'pending' NOT NULL,
- "schema_diff_summary" jsonb,
- "schema_snapshot" jsonb,
- "function_count" varchar(12),
- "function_names" jsonb,
- "error_code" text,
- "error_message" text,
- "started_at" timestamp with time zone,
- "finished_at" timestamp with time zone,
- "created_at" timestamp with time zone DEFAULT now() NOT NULL
- );
- --> statement-breakpoint
- CREATE TABLE "project_members" (
- "project_id" varchar(30) NOT NULL,
- "user_id" varchar(30) NOT NULL,
- "role" text DEFAULT 'developer' NOT NULL,
- "created_at" timestamp with time zone DEFAULT now() NOT NULL,
- "updated_at" timestamp with time zone DEFAULT now() NOT NULL,
- CONSTRAINT "project_members_project_id_user_id_pk" PRIMARY KEY("project_id","user_id")
- );
- --> statement-breakpoint
- CREATE TABLE "projects" (
- "id" varchar(30) PRIMARY KEY NOT NULL,
- "slug" text NOT NULL,
- "name" text NOT NULL,
- "owner_id" varchar(30) NOT NULL,
- "region" text DEFAULT 'eu-west-1' NOT NULL,
- "tier" text DEFAULT 'free' NOT NULL,
- "shard_id" text,
- "created_at" timestamp with time zone DEFAULT now() NOT NULL,
- "updated_at" timestamp with time zone DEFAULT now() NOT NULL,
- "deleted_at" timestamp with time zone
- );
- --> statement-breakpoint
- CREATE TABLE "sessions" (
- "id" varchar(30) PRIMARY KEY NOT NULL,
- "user_id" varchar(30) NOT NULL,
- "token" text NOT NULL,
- "expires_at" timestamp with time zone NOT NULL,
- "ip_address" text,
- "user_agent" text,
- "created_at" timestamp with time zone DEFAULT now() NOT NULL,
- "updated_at" timestamp with time zone DEFAULT now() NOT NULL
- );
- --> statement-breakpoint
- CREATE TABLE "users" (
- "id" varchar(30) PRIMARY KEY NOT NULL,
- "email" text NOT NULL,
- "email_verified" boolean DEFAULT false NOT NULL,
- "name" text,
- "image" text,
- "created_at" timestamp with time zone DEFAULT now() NOT NULL,
- "updated_at" timestamp with time zone DEFAULT now() NOT NULL,
- "deleted_at" timestamp with time zone
- );
- --> statement-breakpoint
- CREATE TABLE "verifications" (
- "id" varchar(30) PRIMARY KEY NOT NULL,
- "identifier" text NOT NULL,
- "value" text NOT NULL,
- "expires_at" timestamp with time zone NOT NULL,
- "created_at" timestamp with time zone DEFAULT now() NOT NULL,
- "updated_at" timestamp with time zone DEFAULT now() NOT NULL
- );
- --> statement-breakpoint
- ALTER TABLE "accounts" ADD CONSTRAINT "accounts_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
- ALTER TABLE "api_keys" ADD CONSTRAINT "api_keys_project_id_projects_id_fk" FOREIGN KEY ("project_id") REFERENCES "public"."projects"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
- ALTER TABLE "api_keys" ADD CONSTRAINT "api_keys_created_by_users_id_fk" FOREIGN KEY ("created_by") REFERENCES "public"."users"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint
- ALTER TABLE "audit_logs" ADD CONSTRAINT "audit_logs_actor_id_users_id_fk" FOREIGN KEY ("actor_id") REFERENCES "public"."users"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint
- ALTER TABLE "audit_logs" ADD CONSTRAINT "audit_logs_project_id_projects_id_fk" FOREIGN KEY ("project_id") REFERENCES "public"."projects"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint
- ALTER TABLE "deployments" ADD CONSTRAINT "deployments_project_id_projects_id_fk" FOREIGN KEY ("project_id") REFERENCES "public"."projects"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
- ALTER TABLE "deployments" ADD CONSTRAINT "deployments_triggered_by_users_id_fk" FOREIGN KEY ("triggered_by") REFERENCES "public"."users"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint
- ALTER TABLE "deployments" ADD CONSTRAINT "deployments_api_key_id_api_keys_id_fk" FOREIGN KEY ("api_key_id") REFERENCES "public"."api_keys"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint
- ALTER TABLE "project_members" ADD CONSTRAINT "project_members_project_id_projects_id_fk" FOREIGN KEY ("project_id") REFERENCES "public"."projects"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
- ALTER TABLE "project_members" ADD CONSTRAINT "project_members_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
- ALTER TABLE "projects" ADD CONSTRAINT "projects_owner_id_users_id_fk" FOREIGN KEY ("owner_id") REFERENCES "public"."users"("id") ON DELETE no action ON UPDATE no action;--> statement-breakpoint
- ALTER TABLE "sessions" ADD CONSTRAINT "sessions_user_id_users_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."users"("id") ON DELETE cascade ON UPDATE no action;--> statement-breakpoint
- CREATE INDEX "accounts_user_id_idx" ON "accounts" USING btree ("user_id");--> statement-breakpoint
- CREATE UNIQUE INDEX "accounts_provider_account_idx" ON "accounts" USING btree ("provider_id","account_id");--> statement-breakpoint
- CREATE UNIQUE INDEX "api_keys_hash_idx" ON "api_keys" USING btree ("hash");--> statement-breakpoint
- CREATE INDEX "api_keys_project_idx" ON "api_keys" USING btree ("project_id");--> statement-breakpoint
- CREATE INDEX "audit_logs_project_created_idx" ON "audit_logs" USING btree ("project_id","created_at");--> statement-breakpoint
- CREATE INDEX "audit_logs_actor_created_idx" ON "audit_logs" USING btree ("actor_id","created_at");--> statement-breakpoint
- CREATE INDEX "deployments_project_created_idx" ON "deployments" USING btree ("project_id","created_at");--> statement-breakpoint
- CREATE INDEX "deployments_status_idx" ON "deployments" USING btree ("status");--> statement-breakpoint
- CREATE UNIQUE INDEX "projects_slug_idx" ON "projects" USING btree ("slug");--> statement-breakpoint
- CREATE INDEX "projects_owner_idx" ON "projects" USING btree ("owner_id");--> statement-breakpoint
- CREATE UNIQUE INDEX "sessions_token_idx" ON "sessions" USING btree ("token");--> statement-breakpoint
- CREATE INDEX "sessions_user_id_idx" ON "sessions" USING btree ("user_id");--> statement-breakpoint
- CREATE UNIQUE INDEX "users_email_idx" ON "users" USING btree ("email");--> statement-breakpoint
- CREATE INDEX "verifications_identifier_idx" ON "verifications" USING btree ("identifier");
|