2025-10-17 03:16:23 +00:00
|
|
|
import { mysqlTable, primaryKey } from "drizzle-orm/mysql-core"
|
2025-08-08 17:22:54 +00:00
|
|
|
import { id, timestamps } from "../drizzle/types"
|
|
|
|
|
|
2025-10-17 03:16:23 +00:00
|
|
|
export const AccountTable = mysqlTable(
|
|
|
|
|
"account",
|
|
|
|
|
{
|
|
|
|
|
id: id(),
|
|
|
|
|
...timestamps,
|
|
|
|
|
},
|
|
|
|
|
(table) => [primaryKey({ columns: [table.id] })],
|
|
|
|
|
)
|