summaryrefslogtreecommitdiffhomepage
path: root/packages/console/core/src/schema/account.sql.ts
blob: ce280ab5cf65ba3159e45e6e72606067aa59e7b6 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { mysqlTable, primaryKey } from "drizzle-orm/mysql-core"
import { id, timestamps } from "../drizzle/types"

export const AccountTable = mysqlTable(
  "account",
  {
    id: id(),
    ...timestamps,
  },
  (table) => [primaryKey({ columns: [table.id] })],
)