mirror of
https://github.com/danbulant/ssps-bot
synced 2026-05-19 20:18:49 +00:00
14 lines
No EOL
283 B
JavaScript
14 lines
No EOL
283 B
JavaScript
const { Sequelize, Op, Model, DataTypes } = require("sequelize");
|
|
const sequelize = require("../sequelize");
|
|
|
|
const Room = sequelize.define(
|
|
"room",
|
|
{
|
|
id: {
|
|
type: DataTypes.STRING(8),
|
|
primaryKey: true
|
|
}
|
|
}
|
|
);
|
|
|
|
module.exports = Room; |