This commit is contained in:
Frank
2025-09-21 00:23:05 -04:00
parent a55943e469
commit 869f629c14
7 changed files with 683 additions and 221 deletions

View File

@@ -7,7 +7,6 @@ export const WorkspaceTable = mysqlTable(
id: ulid("id").notNull().primaryKey(),
slug: varchar("slug", { length: 255 }),
name: varchar("name", { length: 255 }),
dataShare: boolean("data_share"),
...timestamps,
},
(table) => [uniqueIndex("slug").on(table.slug)],