Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Add primary key to schema_subscriber_check
Add a primary key to allow using the listener when  'sql_require_primary_key'  is set.
  • Loading branch information
ajwstevens authored Mar 28, 2024
commit d918a4e9960044b072300428b79200b47cb46b22
2 changes: 1 addition & 1 deletion SchemaListener/AbstractSchemaListener.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ protected function getIsSameDatabaseChecker(Connection $connection): \Closure
{
return static function (\Closure $exec) use ($connection): bool {
$checkTable = 'schema_subscriber_check_'.bin2hex(random_bytes(7));
$connection->executeStatement(sprintf('CREATE TABLE %s (id INTEGER NOT NULL)', $checkTable));
$connection->executeStatement(sprintf('CREATE TABLE %s (id INTEGER PRIMARY KEY NOT NULL)', $checkTable));

try {
$exec(sprintf('DROP TABLE %s', $checkTable));
Expand Down