Merge pull request #757 from SISheogorath/fix/migration

Add missing migration for permissions
This commit is contained in:
Christoph (Sheogorath) Kern 2018-03-17 21:33:02 +01:00 committed by GitHub
commit 6b30f66272
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,11 @@
'use strict'
module.exports = {
up: function (queryInterface, Sequelize) {
queryInterface.changeColumn('Notes', 'permission', {type: Sequelize.ENUM('freely', 'editable', 'limited', 'locked', 'protected', 'private')})
},
down: function (queryInterface, Sequelize) {
queryInterface.changeColumn('Notes', 'permission', {type: Sequelize.ENUM('freely', 'editable', 'locked', 'private')})
}
}