mirror of
https://github.com/Sendouc/sendou.ink.git
synced 2026-05-10 21:00:37 -05:00
10 lines
142 B
TypeScript
10 lines
142 B
TypeScript
const { Model } = require("objection")
|
|
|
|
class User extends Model {
|
|
static get tableName() {
|
|
return "users"
|
|
}
|
|
}
|
|
|
|
module.exports = User
|