Skip to content

Commit

Permalink
Merge pull request #841 from codemanufacture/db-schema-whitelist
Browse files Browse the repository at this point in the history
Add db_schema_whitelist to prevent Multiple primary key defined error on nosto_tagging_customer
  • Loading branch information
supercid authored Jan 16, 2024
2 parents a4cc31a + 457453b commit 04eb89f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions etc/db_schema_whitelist.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{
"nosto_tagging_customer": {
"column": {
"id": true,
"customer_id": true,
"quote_id": true,
"nosto_id": true,
"created_at": true,
"updated_at": true,
"restore_cart_hash": true
},
"index": {
"NOSTO_TAGGING_CUSTOMER_QUOTE_ID": true
},
"constraint": {
"PRIMARY": true
}
}
}

0 comments on commit 04eb89f

Please sign in to comment.