This commit is contained in:
2025-03-24 16:06:18 +05:00
parent 98653d6fde
commit 53596462e9
+2
View File
@@ -4,6 +4,7 @@ import {
uuid,
varchar,
uniqueIndex,
integer,
} from "drizzle-orm/pg-core";
import { companiesTable } from "./companies";
import { usersTable } from "./users";
@@ -22,6 +23,7 @@ export const sessionsTable = pgTable(
})
.notNull()
.default("starting"),
pid: integer("pid"),
appId: uuid("app_id")
.notNull()
.references(() => appsTable.id),