-
Notifications
You must be signed in to change notification settings - Fork 61
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(deployment): implements ui auto top up toggle
refs #714
- Loading branch information
1 parent
da90e52
commit f03df32
Showing
26 changed files
with
1,060 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
DROP TABLE "deployment_settings"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
CREATE TABLE IF NOT EXISTS "deployment_settings" ( | ||
"id" uuid PRIMARY KEY DEFAULT uuid_generate_v4() NOT NULL, | ||
"user_id" uuid NOT NULL, | ||
"dseq" varchar NOT NULL, | ||
"auto_top_up_enabled" boolean DEFAULT false NOT NULL, | ||
"created_at" timestamp DEFAULT now(), | ||
"updated_at" timestamp DEFAULT now(), | ||
CONSTRAINT "dseq_user_id_idx" UNIQUE("dseq","user_id") | ||
); | ||
--> statement-breakpoint | ||
DO $$ BEGIN | ||
ALTER TABLE "deployment_settings" ADD CONSTRAINT "deployment_settings_user_id_userSetting_id_fk" FOREIGN KEY ("user_id") REFERENCES "public"."userSetting"("id") ON DELETE cascade ON UPDATE no action; | ||
EXCEPTION | ||
WHEN duplicate_object THEN null; | ||
END $$; | ||
--> statement-breakpoint | ||
CREATE INDEX IF NOT EXISTS "auto_top_up_enabled_id_idx" ON "deployment_settings" USING btree ("auto_top_up_enabled","id"); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,304 @@ | ||
{ | ||
"id": "266bc991-0645-4879-b6a9-18006839247c", | ||
"prevId": "54fe3617-4303-4cfb-b09e-62d9f09b5ab5", | ||
"version": "7", | ||
"dialect": "postgresql", | ||
"tables": { | ||
"public.user_wallets": { | ||
"name": "user_wallets", | ||
"schema": "", | ||
"columns": { | ||
"id": { | ||
"name": "id", | ||
"type": "serial", | ||
"primaryKey": true, | ||
"notNull": true | ||
}, | ||
"user_id": { | ||
"name": "user_id", | ||
"type": "uuid", | ||
"primaryKey": false, | ||
"notNull": false | ||
}, | ||
"address": { | ||
"name": "address", | ||
"type": "varchar", | ||
"primaryKey": false, | ||
"notNull": false | ||
}, | ||
"stripe_customer_id": { | ||
"name": "stripe_customer_id", | ||
"type": "varchar", | ||
"primaryKey": false, | ||
"notNull": false | ||
}, | ||
"deployment_allowance": { | ||
"name": "deployment_allowance", | ||
"type": "numeric(20, 2)", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": "'0.00'" | ||
}, | ||
"fee_allowance": { | ||
"name": "fee_allowance", | ||
"type": "numeric(20, 2)", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": "'0.00'" | ||
}, | ||
"trial": { | ||
"name": "trial", | ||
"type": "boolean", | ||
"primaryKey": false, | ||
"notNull": false, | ||
"default": true | ||
}, | ||
"created_at": { | ||
"name": "created_at", | ||
"type": "timestamp", | ||
"primaryKey": false, | ||
"notNull": false, | ||
"default": "now()" | ||
}, | ||
"updated_at": { | ||
"name": "updated_at", | ||
"type": "timestamp", | ||
"primaryKey": false, | ||
"notNull": false, | ||
"default": "now()" | ||
} | ||
}, | ||
"indexes": {}, | ||
"foreignKeys": { | ||
"user_wallets_user_id_userSetting_id_fk": { | ||
"name": "user_wallets_user_id_userSetting_id_fk", | ||
"tableFrom": "user_wallets", | ||
"tableTo": "userSetting", | ||
"columnsFrom": [ | ||
"user_id" | ||
], | ||
"columnsTo": [ | ||
"id" | ||
], | ||
"onDelete": "cascade", | ||
"onUpdate": "no action" | ||
} | ||
}, | ||
"compositePrimaryKeys": {}, | ||
"uniqueConstraints": { | ||
"user_wallets_user_id_unique": { | ||
"name": "user_wallets_user_id_unique", | ||
"nullsNotDistinct": false, | ||
"columns": [ | ||
"user_id" | ||
] | ||
}, | ||
"user_wallets_address_unique": { | ||
"name": "user_wallets_address_unique", | ||
"nullsNotDistinct": false, | ||
"columns": [ | ||
"address" | ||
] | ||
} | ||
} | ||
}, | ||
"public.checkout_sessions": { | ||
"name": "checkout_sessions", | ||
"schema": "", | ||
"columns": { | ||
"id": { | ||
"name": "id", | ||
"type": "uuid", | ||
"primaryKey": true, | ||
"notNull": true, | ||
"default": "uuid_generate_v4()" | ||
}, | ||
"user_id": { | ||
"name": "user_id", | ||
"type": "uuid", | ||
"primaryKey": false, | ||
"notNull": true | ||
}, | ||
"session_id": { | ||
"name": "session_id", | ||
"type": "varchar", | ||
"primaryKey": false, | ||
"notNull": true | ||
}, | ||
"created_at": { | ||
"name": "created_at", | ||
"type": "timestamp", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": "now()" | ||
}, | ||
"updated_at": { | ||
"name": "updated_at", | ||
"type": "timestamp", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": "now()" | ||
} | ||
}, | ||
"indexes": {}, | ||
"foreignKeys": { | ||
"checkout_sessions_user_id_userSetting_id_fk": { | ||
"name": "checkout_sessions_user_id_userSetting_id_fk", | ||
"tableFrom": "checkout_sessions", | ||
"tableTo": "userSetting", | ||
"columnsFrom": [ | ||
"user_id" | ||
], | ||
"columnsTo": [ | ||
"id" | ||
], | ||
"onDelete": "no action", | ||
"onUpdate": "no action" | ||
} | ||
}, | ||
"compositePrimaryKeys": {}, | ||
"uniqueConstraints": { | ||
"checkout_sessions_session_id_unique": { | ||
"name": "checkout_sessions_session_id_unique", | ||
"nullsNotDistinct": false, | ||
"columns": [ | ||
"session_id" | ||
] | ||
} | ||
} | ||
}, | ||
"public.userSetting": { | ||
"name": "userSetting", | ||
"schema": "", | ||
"columns": { | ||
"id": { | ||
"name": "id", | ||
"type": "uuid", | ||
"primaryKey": true, | ||
"notNull": true, | ||
"default": "uuid_generate_v4()" | ||
}, | ||
"userId": { | ||
"name": "userId", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": false | ||
}, | ||
"username": { | ||
"name": "username", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": false | ||
}, | ||
"email": { | ||
"name": "email", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": false | ||
}, | ||
"emailVerified": { | ||
"name": "emailVerified", | ||
"type": "boolean", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": false | ||
}, | ||
"stripeCustomerId": { | ||
"name": "stripeCustomerId", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": false | ||
}, | ||
"bio": { | ||
"name": "bio", | ||
"type": "text", | ||
"primaryKey": false, | ||
"notNull": false | ||
}, | ||
"subscribedToNewsletter": { | ||
"name": "subscribedToNewsletter", | ||
"type": "boolean", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": false | ||
}, | ||
"youtubeUsername": { | ||
"name": "youtubeUsername", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": false | ||
}, | ||
"twitterUsername": { | ||
"name": "twitterUsername", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": false | ||
}, | ||
"githubUsername": { | ||
"name": "githubUsername", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": false | ||
}, | ||
"last_active_at": { | ||
"name": "last_active_at", | ||
"type": "timestamp", | ||
"primaryKey": false, | ||
"notNull": false, | ||
"default": "now()" | ||
}, | ||
"last_ip": { | ||
"name": "last_ip", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": false | ||
}, | ||
"last_user_agent": { | ||
"name": "last_user_agent", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": false | ||
}, | ||
"last_fingerprint": { | ||
"name": "last_fingerprint", | ||
"type": "varchar(255)", | ||
"primaryKey": false, | ||
"notNull": false | ||
}, | ||
"created_at": { | ||
"name": "created_at", | ||
"type": "timestamp", | ||
"primaryKey": false, | ||
"notNull": false, | ||
"default": "now()" | ||
} | ||
}, | ||
"indexes": {}, | ||
"foreignKeys": {}, | ||
"compositePrimaryKeys": {}, | ||
"uniqueConstraints": { | ||
"userSetting_userId_unique": { | ||
"name": "userSetting_userId_unique", | ||
"nullsNotDistinct": false, | ||
"columns": [ | ||
"userId" | ||
] | ||
}, | ||
"userSetting_username_unique": { | ||
"name": "userSetting_username_unique", | ||
"nullsNotDistinct": false, | ||
"columns": [ | ||
"username" | ||
] | ||
} | ||
} | ||
} | ||
}, | ||
"enums": {}, | ||
"schemas": {}, | ||
"_meta": { | ||
"columns": {}, | ||
"schemas": {}, | ||
"tables": {} | ||
} | ||
} |
Oops, something went wrong.