Skip to content

Commit 0ce1309

Browse files
Merge pull request #447 from eschalks/snapshots-aggregate_version-type
Change the column type of snapshots.aggregate_version
2 parents 97e353d + fcf01f5 commit 0ce1309

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/create_snapshots_table.php.stub

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ return new class extends Migration
1111
Schema::create('snapshots', function (Blueprint $table) {
1212
$table->id();
1313
$table->uuid('aggregate_uuid');
14-
$table->unsignedInteger('aggregate_version');
14+
$table->unsignedBigInteger('aggregate_version');
1515
$table->jsonb('state');
1616

1717
$table->timestamps();

0 commit comments

Comments
 (0)