r
Size: a a a
r
D
r
D

D
G
RK

D
VB

G
D
VB
D
AR
G
АП
VB
SG
AR
IG
Schema::create('posts', function (Blueprint $table) {
$table->uuid('id')->primary();
$table->string('title');
$table->text('body');
$table->timestamps();
});
или лучше добавить доп. поле uuid и юзать одновременно id и uuid ?$table->increments('id');
$table->uuid('id')->primary();