Skip to content

Commit

Permalink
fix(install): fix error when creating audit table (#288)
Browse files Browse the repository at this point in the history
fixes a duplicate column error when attempting to create the audit database table on install or upgrade
  • Loading branch information
FreekVR authored Nov 27, 2024
1 parent df8260e commit d519ed2
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/Database/CreateAuditTableDatabaseMigration.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,6 @@ public function up(): void
$builder->column('model_identifier', 'VARCHAR(255) NOT NULL');
$builder->timestamps();
$builder->primary(['id']);
$builder->createdTimestamps();
});

$this->createIndex($this->getTable(), function (CreateIndexSqlBuilder $builder) {
Expand Down

0 comments on commit d519ed2

Please sign in to comment.