mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-25 11:55:03 +03:00
Fixed attribution table missing on cascade delete
refs: https://github.com/TryGhost/Ghost/issues/15252 - all columns with a foreign key (references prop) must have a deletion strategy - we just found a bug with this in the comments table - see referenced issue - this fix adjusts the schema and migration for this change before its released so we don't have to write a horrible migration later
This commit is contained in:
parent
6d53e40bd9
commit
d2acf3aada
@ -4,7 +4,7 @@ module.exports = addTable('members_subscription_created_events', {
|
||||
id: {type: 'string', maxlength: 24, nullable: false, primary: true},
|
||||
created_at: {type: 'dateTime', nullable: false},
|
||||
member_id: {type: 'string', maxlength: 24, nullable: false, references: 'members.id', cascadeDelete: true},
|
||||
subscription_id: {type: 'string', maxlength: 24, nullable: false, references: 'members_stripe_customers_subscriptions.id'},
|
||||
subscription_id: {type: 'string', maxlength: 24, nullable: false, references: 'members_stripe_customers_subscriptions.id', cascadeDelete: true},
|
||||
attribution_id: {type: 'string', maxlength: 24, nullable: true},
|
||||
attribution_type: {type: 'string', maxlength: 50, nullable: true},
|
||||
attribution_url: {type: 'string', maxlength: 2000, nullable: true}
|
||||
|
@ -608,7 +608,7 @@ module.exports = {
|
||||
id: {type: 'string', maxlength: 24, nullable: false, primary: true},
|
||||
created_at: {type: 'dateTime', nullable: false},
|
||||
member_id: {type: 'string', maxlength: 24, nullable: false, references: 'members.id', cascadeDelete: true},
|
||||
subscription_id: {type: 'string', maxlength: 24, nullable: false, references: 'members_stripe_customers_subscriptions.id'},
|
||||
subscription_id: {type: 'string', maxlength: 24, nullable: false, references: 'members_stripe_customers_subscriptions.id', cascadeDelete: true},
|
||||
attribution_id: {type: 'string', maxlength: 24, nullable: true},
|
||||
attribution_type: {type: 'string', maxlength: 50, nullable: true},
|
||||
attribution_url: {type: 'string', maxlength: 2000, nullable: true}
|
||||
|
@ -35,7 +35,7 @@ const validateRouteSettings = require('../../../../../core/server/services/route
|
||||
*/
|
||||
describe('DB version integrity', function () {
|
||||
// Only these variables should need updating
|
||||
const currentSchemaHash = '75ee5448311cbfb4c65e3843b6750d29';
|
||||
const currentSchemaHash = 'ec9f46178cb70d3297d266203659ef4c';
|
||||
const currentFixturesHash = '0ae1887dd0b42508be946bdbd20d41c8';
|
||||
const currentSettingsHash = 'd54210758b7054e2174fd34aa2320ad7';
|
||||
const currentRoutesHash = '3d180d52c663d173a6be791ef411ed01';
|
||||
|
Loading…
Reference in New Issue
Block a user