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

export const AccountTable = mysqlTable("account", {
  id: id(),
  ...timestamps,
})