Move 'unique' constraint to another statement (SQLite don't support set unique when addColumn)
		
			
				
	
	
		
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
			
		
		
	
	
			39 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			JavaScript
		
	
	
	
	
	
'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')
 | 
						|
      })
 | 
						|
  }
 | 
						|
}
 |