Skip to content

Commit

Permalink
Merge pull request #447 from eschalks/snapshots-aggregate_version-type
Browse files Browse the repository at this point in the history
Change the column type of snapshots.aggregate_version
  • Loading branch information
sebastiandedeyne authored Nov 27, 2023
2 parents 97e353d + fcf01f5 commit 0ce1309
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion database/migrations/create_snapshots_table.php.stub
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ return new class extends Migration
Schema::create('snapshots', function (Blueprint $table) {
$table->id();
$table->uuid('aggregate_uuid');
$table->unsignedInteger('aggregate_version');
$table->unsignedBigInteger('aggregate_version');
$table->jsonb('state');

$table->timestamps();
Expand Down

0 comments on commit 0ce1309

Please sign in to comment.