You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
71 lines
1.6 KiB
JavaScript
71 lines
1.6 KiB
JavaScript
|
7 months ago
|
'use strict';
|
||
|
|
/** @type {import('sequelize-cli').Migration} */
|
||
|
|
module.exports = {
|
||
|
|
async up(queryInterface, Sequelize) {
|
||
|
|
await queryInterface.createTable('Courses', {
|
||
|
|
id: {
|
||
|
|
allowNull: false,
|
||
|
|
autoIncrement: true,
|
||
|
|
primaryKey: true,
|
||
|
|
type: Sequelize.INTEGER.UNSIGNED
|
||
|
|
},
|
||
|
|
categoryId: {
|
||
|
|
allowNull: false,
|
||
|
|
type: Sequelize.INTEGER.UNSIGNED
|
||
|
|
},
|
||
|
|
userId: {
|
||
|
|
allowNull: false,
|
||
|
|
type: Sequelize.INTEGER.UNSIGNED
|
||
|
|
},
|
||
|
|
name: {
|
||
|
|
allowNull: false,
|
||
|
|
type: Sequelize.STRING
|
||
|
|
},
|
||
|
|
image: {
|
||
|
|
type: Sequelize.STRING
|
||
|
|
},
|
||
|
|
recommended: {
|
||
|
|
allowNull: false,
|
||
|
|
defaultValue: false,
|
||
|
|
type: Sequelize.BOOLEAN
|
||
|
|
},
|
||
|
|
introductory: {
|
||
|
|
allowNull: false,
|
||
|
|
defaultValue: false,
|
||
|
|
type: Sequelize.BOOLEAN
|
||
|
|
},
|
||
|
|
content: {
|
||
|
|
type: Sequelize.TEXT
|
||
|
|
},
|
||
|
|
likesCount: {
|
||
|
|
allowNull: false,
|
||
|
|
defaultValue: 0,
|
||
|
|
type: Sequelize.INTEGER.UNSIGNED
|
||
|
|
},
|
||
|
|
chaptersCount: {
|
||
|
|
allowNull: false,
|
||
|
|
defaultValue: 0,
|
||
|
|
type: Sequelize.INTEGER.UNSIGNED
|
||
|
|
},
|
||
|
|
createdAt: {
|
||
|
|
allowNull: false,
|
||
|
|
type: Sequelize.DATE
|
||
|
|
},
|
||
|
|
updatedAt: {
|
||
|
|
allowNull: false,
|
||
|
|
type: Sequelize.DATE
|
||
|
|
}
|
||
|
|
});
|
||
|
|
await queryInterface.addIndex(
|
||
|
|
'Courses', {
|
||
|
|
fields: ['categoryId']
|
||
|
|
});
|
||
|
|
await queryInterface.addIndex(
|
||
|
|
'Courses', {
|
||
|
|
fields: ['userId']
|
||
|
|
});
|
||
|
|
},
|
||
|
|
async down(queryInterface, Sequelize) {
|
||
|
|
await queryInterface.dropTable('Courses');
|
||
|
|
}
|
||
|
|
};
|