Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

How can we write/run the migration with sequelize-encrypted methods #10

Open
Edvinraj opened this issue Nov 24, 2017 · 1 comment
Open

Comments

@Edvinraj
Copy link

Edvinraj commented Nov 24, 2017

How to add encrypted fields to existing table when run the migration(sequelize-migration)? Because we have to pass key for encryption and define some enc_fields,vault in migration file. I'm struck with those..

@montalvomiguelo
Copy link

Set your encrypted attributes as type Sequelize.BLOB

'use strict';
module.exports = {
  up: (queryInterface, Sequelize) => {
    return queryInterface.addColumn('users', 'encrypted', {
      type: Sequelize.BLOB
    });
  },
  down: (queryInterface, Sequelize) => {
    return queryInterface.removeColumn('users', 'encrypted');
  }
};

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants