Add article and association with user
This commit is contained in:
parent
f28f399f89
commit
b4f2ccd8fe
3 changed files with 95 additions and 7 deletions
50
migrations/20240606121847-create-article.js
Normal file
50
migrations/20240606121847-create-article.js
Normal file
|
|
@ -0,0 +1,50 @@
|
|||
'use strict';
|
||||
/** @type {import('sequelize-cli').Migration} */
|
||||
module.exports = {
|
||||
async up(queryInterface, Sequelize) {
|
||||
await queryInterface.createTable('articles', {
|
||||
id: {
|
||||
allowNull: false,
|
||||
autoIncrement: true,
|
||||
primaryKey: true,
|
||||
type: Sequelize.INTEGER
|
||||
},
|
||||
title: {
|
||||
type: Sequelize.STRING,
|
||||
allowNull: false,
|
||||
},
|
||||
content: {
|
||||
type: Sequelize.STRING
|
||||
},
|
||||
submittedBy: {
|
||||
type: Sequelize.INTEGER,
|
||||
references: {
|
||||
model: 'user',
|
||||
key: 'id',
|
||||
onDelete: 'SET NULL',
|
||||
onUpdate: 'CASCADE'
|
||||
}
|
||||
},
|
||||
reviewedBy: {
|
||||
type: Sequelize.INTEGER,
|
||||
references: {
|
||||
model: 'user',
|
||||
key: 'id',
|
||||
onDelete: 'SET NULL',
|
||||
onUpdate: 'CASCADE'
|
||||
}
|
||||
},
|
||||
createdAt: {
|
||||
allowNull: false,
|
||||
type: Sequelize.DATE
|
||||
},
|
||||
updatedAt: {
|
||||
allowNull: false,
|
||||
type: Sequelize.DATE
|
||||
}
|
||||
});
|
||||
},
|
||||
async down(queryInterface, Sequelize) {
|
||||
await queryInterface.dropTable('articles');
|
||||
}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue