color editing
This commit is contained in:
11
server/migrations/20171023064220-collection-color.js
Normal file
11
server/migrations/20171023064220-collection-color.js
Normal file
@@ -0,0 +1,11 @@
|
||||
module.exports = {
|
||||
up: function(queryInterface, Sequelize) {
|
||||
queryInterface.addColumn('collections', 'color', {
|
||||
type: Sequelize.TEXT,
|
||||
});
|
||||
},
|
||||
|
||||
down: function(queryInterface, Sequelize) {
|
||||
queryInterface.removeColumn('collections', 'color');
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user