diff --git a/core/server/data/migrations/versions/3.8/01-add-geolocation-to-members.js b/core/server/data/migrations/versions/3.8/01-add-geolocation-to-members.js new file mode 100644 index 0000000000..3c49ba3971 --- /dev/null +++ b/core/server/data/migrations/versions/3.8/01-add-geolocation-to-members.js @@ -0,0 +1,28 @@ +const commands = require('../../../schema').commands; + +const table = 'members'; +const column = 'geolocation'; + +module.exports.up = commands.createColumnMigration({ + table, + column, + dbIsInCorrectState(columnExists) { + return columnExists === true; + }, + operation: commands.addColumn, + operationVerb: 'Adding' +}); + +module.exports.down = commands.createColumnMigration({ + table, + column, + dbIsInCorrectState(columnExists) { + return columnExists === false; + }, + operation: commands.dropColumn, + operationVerb: 'Removing' +}); + +module.exports.config = { + transaction: true +}; diff --git a/core/server/data/schema/schema.js b/core/server/data/schema/schema.js index ddbee7e2a1..f717d7281d 100644 --- a/core/server/data/schema/schema.js +++ b/core/server/data/schema/schema.js @@ -327,6 +327,7 @@ module.exports = { email: {type: 'string', maxlength: 191, nullable: false, unique: true, validations: {isEmail: true}}, name: {type: 'string', maxlength: 191, nullable: true}, note: {type: 'string', maxlength: 2000, nullable: true}, + geolocation: {type: 'string', maxlength: 2000, nullable: true}, subscribed: {type: 'bool', nullable: true, defaultTo: true}, created_at: {type: 'dateTime', nullable: false}, created_by: {type: 'string', maxlength: 24, nullable: false}, diff --git a/core/test/unit/data/schema/integrity_spec.js b/core/test/unit/data/schema/integrity_spec.js index 9db6ce586f..29bdb51057 100644 --- a/core/test/unit/data/schema/integrity_spec.js +++ b/core/test/unit/data/schema/integrity_spec.js @@ -19,7 +19,7 @@ var should = require('should'), */ describe('DB version integrity', function () { // Only these variables should need updating - const currentSchemaHash = '4d65d73126e314a8c05e98990a992201'; + const currentSchemaHash = '7cd198f085844aa5725964069b051189'; const currentFixturesHash = '0ca1c9a6d3dab21d8a1e0b6a988fd83f'; // If this test is failing, then it is likely a change has been made that requires a DB version bump,