Authentication #170
3 changed files with 0 additions and 60 deletions
|
@ -1,20 +0,0 @@
|
||||||
module.exports = {
|
|
||||||
up: (queryInterface, Sequelize) => {
|
|
||||||
// logic for transforming into the new state
|
|
||||||
return queryInterface.addColumn(
|
|
||||||
'Claim',
|
|
||||||
'FileId',
|
|
||||||
{
|
|
||||||
type : Sequelize.STRING,
|
|
||||||
allowNull: true,
|
|
||||||
}
|
|
||||||
);
|
|
||||||
},
|
|
||||||
down: (queryInterface, Sequelize) => {
|
|
||||||
// logic for reverting the changes
|
|
||||||
return queryInterface.removeColumn(
|
|
||||||
'Claim',
|
|
||||||
'FileId'
|
|
||||||
);
|
|
||||||
},
|
|
||||||
};
|
|
|
@ -1,20 +0,0 @@
|
||||||
module.exports = {
|
|
||||||
up: (queryInterface, Sequelize) => {
|
|
||||||
// logic for transforming into the new state
|
|
||||||
return queryInterface.addColumn(
|
|
||||||
'Certificate',
|
|
||||||
'UserId',
|
|
||||||
{
|
|
||||||
type : Sequelize.STRING,
|
|
||||||
allowNull: true,
|
|
||||||
}
|
|
||||||
);
|
|
||||||
},
|
|
||||||
down: (queryInterface, Sequelize) => {
|
|
||||||
// logic for reverting the changes
|
|
||||||
return queryInterface.removeColumn(
|
|
||||||
'Certificate',
|
|
||||||
'UserId'
|
|
||||||
);
|
|
||||||
},
|
|
||||||
};
|
|
|
@ -1,20 +0,0 @@
|
||||||
module.exports = {
|
|
||||||
up: (queryInterface, Sequelize) => {
|
|
||||||
// logic for transforming into the new state
|
|
||||||
return queryInterface.addColumn(
|
|
||||||
'File',
|
|
||||||
'UserId',
|
|
||||||
{
|
|
||||||
type : Sequelize.STRING,
|
|
||||||
allowNull: true,
|
|
||||||
}
|
|
||||||
);
|
|
||||||
},
|
|
||||||
down: (queryInterface, Sequelize) => {
|
|
||||||
// logic for reverting the changes
|
|
||||||
return queryInterface.removeColumn(
|
|
||||||
'File',
|
|
||||||
'UserId'
|
|
||||||
);
|
|
||||||
},
|
|
||||||
};
|
|
Loading…
Reference in a new issue