mirror of
https://github.com/wasp-lang/open-saas.git
synced 2025-04-10 04:49:03 +02:00
update migrations and docs
This commit is contained in:
parent
fe4381917e
commit
5c1ec767df
@ -0,0 +1,11 @@
|
||||
--- template/app/migrations/20250220095333_remove_last_active_timestamp/migration.sql
|
||||
+++ opensaas-sh/app/migrations/20250220095333_remove_last_active_timestamp/migration.sql
|
||||
@@ -0,0 +1,8 @@
|
||||
+/*
|
||||
+ Warnings:
|
||||
+
|
||||
+ - You are about to drop the column `lastActiveTimestamp` on the `User` table. All the data in the column will be lost.
|
||||
+
|
||||
+*/
|
||||
+-- AlterTable
|
||||
+ALTER TABLE "User" DROP COLUMN "lastActiveTimestamp";
|
@ -18,7 +18,6 @@ entity User {=psl
|
||||
email String? @unique
|
||||
username String?
|
||||
createdAt DateTime @default(now())
|
||||
lastActiveTimestamp DateTime @default(now())
|
||||
isAdmin Boolean @default(false)
|
||||
paymentProcessorUserId String? @unique
|
||||
lemonSqueezyCustomerPortalUrl String? // You can delete this if you're not using Lemon Squeezy as your payments processor.
|
||||
@ -116,7 +115,6 @@ entity User {=psl
|
||||
email String? @unique
|
||||
username String?
|
||||
createdAt DateTime @default(now())
|
||||
lastActiveTimestamp DateTime @default(now())
|
||||
isAdmin Boolean @default(false)
|
||||
//...
|
||||
psl=}
|
||||
|
Loading…
x
Reference in New Issue
Block a user