DiscordJS-Template/models/voiceChannels.js

19 lines
316 B
JavaScript
Raw Normal View History

2024-02-06 15:18:06 +00:00
import { DataTypes } from 'sequelize';
2024-02-07 19:04:16 +00:00
export default function(sequelize) {
2024-02-06 15:18:06 +00:00
return sequelize.define('VoiceChannel', {
id: {
type: DataTypes.STRING,
primaryKey: true
2024-02-07 19:04:16 +00:00
},
create: {
type: DataTypes.BOOLEAN
},
owner: {
type: DataTypes.STRING,
defaultValue: false,
allowNull: true
2024-02-06 15:18:06 +00:00
}
});
}