Revert "Dropped nullable from subscribe events' newsletter id (#14598)"

This reverts commit dc12e6490a.
This commit is contained in:
Daniel Lockyer 2022-04-27 20:01:32 +01:00
parent b2e36b2f6f
commit 7583d379be
No known key found for this signature in database
GPG Key ID: D21186F0B47295AD
3 changed files with 2 additions and 5 deletions

View File

@ -1,3 +0,0 @@
const {createDropNullableMigration} = require('../../utils');
module.exports = createDropNullableMigration('members_subscribe_events', 'newsletter_id');

View File

@ -601,7 +601,7 @@ module.exports = {
subscribed: {type: 'bool', nullable: false, defaultTo: true},
created_at: {type: 'dateTime', nullable: false},
source: {type: 'string', maxlength: 50, nullable: true},
newsletter_id: {type: 'string', maxlength: 24, nullable: false, references: 'newsletters.id', cascadeDelete: false}
newsletter_id: {type: 'string', maxlength: 24, nullable: true, references: 'newsletters.id', cascadeDelete: false}
},
stripe_products: {
id: {type: 'string', maxlength: 24, nullable: false, primary: true},

View File

@ -35,7 +35,7 @@ const validateRouteSettings = require('../../../../../core/server/services/route
*/
describe('DB version integrity', function () {
// Only these variables should need updating
const currentSchemaHash = '2524eac55c153eca7ee300e094fbd3fe';
const currentSchemaHash = 'cad4a9890ab928de593e4c682a2cd326';
const currentFixturesHash = '4924616fbc51dd0ccef62ae04b4708f9';
const currentSettingsHash = 'ffd899a82b0ad2886e92d8244bcbca6a';
const currentRoutesHash = '3d180d52c663d173a6be791ef411ed01';