fix: change casing for apiKey schema

This commit is contained in:
Henry
2025-06-01 23:07:21 +01:00
parent 90b928bd51
commit ee5cbd1e7f
4 changed files with 7 additions and 9 deletions

View File

@@ -7,7 +7,7 @@ import {
varchar,
} from "drizzle-orm/pg-core";
import { apiKey } from "./auth";
import { apikey } from "./auth";
import { boards } from "./boards";
import { cards } from "./cards";
import { imports } from "./imports";
@@ -34,7 +34,7 @@ export const usersRelations = relations(users, ({ many }) => ({
imports: many(imports),
lists: many(lists),
workspaces: many(workspaces),
apiKeys: many(apiKey),
apiKeys: many(apikey),
}));
export const usersToWorkspacesRelations = relations(