Skip to content

Commit 20010d3

Browse files
committed
fixed generation of indexes.
1 parent de1319b commit 20010d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/Resources/Database/Migrations/Default/2020_05_05_090000_create_package_test_tables.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ public function up(): void
1212
Schema::create(
1313
'fields_test',
1414
static function (Blueprint $table) {
15-
$table->bigInteger('id', true)->unsigned()->primary();
15+
$table->bigInteger('id', true)->unsigned();
1616
$table->smallInteger('small_int')->nullable();
1717
$table->mediumInteger('medium_int')->unique();
1818
$table->tinyInteger('tiny_int')->default(1)->comment('my tiny int');

0 commit comments

Comments
 (0)