From edc3822936b82899e84ec5b95c88da214227eb9b Mon Sep 17 00:00:00 2001 From: Omer Sabic Date: Mon, 10 Jun 2024 21:23:53 +0200 Subject: [PATCH] temp tokens for testers --- src/db/schemas.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/db/schemas.js b/src/db/schemas.js index c81d478..4c4c31c 100644 --- a/src/db/schemas.js +++ b/src/db/schemas.js @@ -12,7 +12,7 @@ export const users = pgTable("users", { channel_id: text("channel_id"), uploads_playlist_id: text("uploads_playlist_id"), subscription_tier: subscription_enum("subscription_tier").default("free").notNull(), - tokens: integer("tokens").default(0).notNull() + tokens: integer("tokens").default(200).notNull() }); export const sessions = pgTable("sessions", {