LMS/E-Learning-Backend-main/app/models/shorturl.js
2025-09-01 19:37:35 +05:30

18 lines
414 B
JavaScript

module.exports = (sequelize, type) => {
const ShortUrl = sequelize.define('shorturl', {
id: {
type: type.INTEGER,
primaryKey: true,
autoIncrement: true
},
fullurl: type.TEXT,
shorturl: type.TEXT,
urlname: type.TEXT,
status: {
type: type.INTEGER,
defaultValue: 0
}
})
return ShortUrl;
}