refactor(all): refactoring to remove monorepo taking to long to get it wokring as intended
This commit is contained in:
12
packages/database/drizzle/0000_stormy_thunderbolt.sql
Normal file
12
packages/database/drizzle/0000_stormy_thunderbolt.sql
Normal file
@@ -0,0 +1,12 @@
|
||||
CREATE TABLE "users" (
|
||||
"id" serial PRIMARY KEY NOT NULL,
|
||||
"user_id" text NOT NULL,
|
||||
"title" text NOT NULL,
|
||||
"passwordToken" text NOT NULL,
|
||||
"passwordTokenExpires" timestamp,
|
||||
"active" boolean DEFAULT true NOT NULL,
|
||||
"pingcode" numeric,
|
||||
"add_Date" timestamp DEFAULT now(),
|
||||
"add_User" text DEFAULT 'LST_System' NOT NULL,
|
||||
"upd_date" timestamp DEFAULT now()
|
||||
);
|
||||
Reference in New Issue
Block a user