Skip to content

Commit 5a35a1b

Browse files
[8.x] Change model_id column on runway_uris table to a string (#656)
1 parent a0ce6cf commit 5a35a1b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

database/migrations/2021_05_04_162552_create_runway_uris_table.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public function up()
1717
$table->id();
1818
$table->string('uri');
1919
$table->string('model_type');
20-
$table->bigInteger('model_id');
20+
$table->string('model_id', 36);
2121
$table->timestamps();
2222
});
2323
}

0 commit comments

Comments
 (0)