mirror of
https://github.com/danbulant/ssps-bot
synced 2026-05-19 20:18:49 +00:00
19 lines
No EOL
468 B
JavaScript
19 lines
No EOL
468 B
JavaScript
const { Sequelize, Op, Model, DataTypes } = require("sequelize");
|
|
const sequelize = require("../sequelize");
|
|
|
|
const Rickroll = sequelize.define(
|
|
"rickroll",
|
|
{
|
|
id: {
|
|
type: DataTypes.INTEGER,
|
|
autoIncrement: true,
|
|
primaryKey: true
|
|
},
|
|
link: {
|
|
type: DataTypes.STRING(255),
|
|
defaultValue: "'https://www.youtube.com/watch?v=dQw4w9WgXcQ'"
|
|
}
|
|
}
|
|
);
|
|
|
|
module.exports = Rickroll; |