import { int, text, mysqlSchema } from "drizzle-orm/mysql-core";
export const schema = mysqlSchema("saturn");
export const user = schema.table("users", {
id: int("id").primaryKey().autoincrement(),
username: text("username"),
password: text("password"),
perm: int("perm"),
});
import { int, text, mysqlSchema } from "drizzle-orm/mysql-core";
export const schema = mysqlSchema("saturn");
export const user = schema.table("users", {
id: int("id").primaryKey().autoincrement(),
username: text("username"),
password: text("password"),
perm: int("perm"),
});