summaryrefslogtreecommitdiff
path: root/lib/migrations/20150702001020-update-to-0_3_1.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/migrations/20150702001020-update-to-0_3_1.js')
-rw-r--r--lib/migrations/20150702001020-update-to-0_3_1.js38
1 files changed, 38 insertions, 0 deletions
diff --git a/lib/migrations/20150702001020-update-to-0_3_1.js b/lib/migrations/20150702001020-update-to-0_3_1.js
new file mode 100644
index 00000000..40d9c97a
--- /dev/null
+++ b/lib/migrations/20150702001020-update-to-0_3_1.js
@@ -0,0 +1,38 @@
+'use strict'
+module.exports = {
+ up: function (queryInterface, Sequelize) {
+ return queryInterface.addColumn('Notes', 'shortid', {
+ type: Sequelize.STRING,
+ defaultValue: '0000000000',
+ allowNull: false
+ }).then(function () {
+ return queryInterface.addIndex('Notes', ['shortid'], {
+ indicesType: 'UNIQUE'
+ })
+ }).then(function () {
+ return queryInterface.addColumn('Notes', 'permission', {
+ type: Sequelize.STRING,
+ defaultValue: 'private',
+ allowNull: false
+ })
+ }).then(function () {
+ return queryInterface.addColumn('Notes', 'viewcount', {
+ type: Sequelize.INTEGER,
+ defaultValue: 0
+ })
+ })
+ },
+
+ down: function (queryInterface, Sequelize) {
+ return queryInterface.removeColumn('Notes', 'viewcount')
+ .then(function () {
+ return queryInterface.removeColumn('Notes', 'permission')
+ })
+ .then(function () {
+ return queryInterface.removeIndex('Notes', ['shortid'])
+ })
+ .then(function () {
+ return queryInterface.removeColumn('Notes', 'shortid')
+ })
+ }
+}