Skip to content

Commit

Permalink
feat(db/orders): rename table
Browse files Browse the repository at this point in the history
  • Loading branch information
mrevanzak committed Dec 1, 2023
1 parent 9cf2323 commit 8bf34c0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/db/schema/log-orders.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import { mysqlEnum, timestamp, varchar } from "drizzle-orm/mysql-core";
import { mySqlTable } from "./_table";
import { orders } from "./orders";

export const logOrders = mySqlTable("logOrders", {
export const logOrders = mySqlTable("log_orders", {
id: varchar("id", { length: 36 })
.notNull()
.primaryKey()
Expand Down

0 comments on commit 8bf34c0

Please sign in to comment.