From 0534bc0c0920dd1cb2503caeb9de6c4bbd5dce05 Mon Sep 17 00:00:00 2001 From: Frank Date: Mon, 6 Oct 2025 23:57:52 -0400 Subject: wip: zen --- packages/console/core/src/schema/workspace.sql.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'packages/console/core/src/schema/workspace.sql.ts') diff --git a/packages/console/core/src/schema/workspace.sql.ts b/packages/console/core/src/schema/workspace.sql.ts index 979255428..269b62a2a 100644 --- a/packages/console/core/src/schema/workspace.sql.ts +++ b/packages/console/core/src/schema/workspace.sql.ts @@ -6,7 +6,7 @@ export const WorkspaceTable = mysqlTable( { id: ulid("id").notNull().primaryKey(), slug: varchar("slug", { length: 255 }), - name: varchar("name", { length: 255 }), + name: varchar("name", { length: 255 }).notNull(), ...timestamps, }, (table) => [uniqueIndex("slug").on(table.slug)], -- cgit v1.2.3