Gt
Size: a a a
Gt
D
N
D
Gt
N
Gt
asset()
'ом.Gt
mix()
.N
asset()
'ом.Gt
Gt
VY
public function up()
{
Schema::table('orders', function (Blueprint $table) {
$table->text('files')->default('[]');
});
DB::table('orders')->update(['files' => '[]']);
}
orders
add files
text not null default '[]')EG
public function up()
{
Schema::table('orders', function (Blueprint $table) {
$table->text('files')->default('[]');
});
DB::table('orders')->update(['files' => '[]']);
}
orders
add files
text not null default '[]')RE
D
EG
public function up()
{
Schema::table('orders', function (Blueprint $table) {
$table->text('files')->default('[]');
});
DB::table('orders')->update(['files' => '[]']);
}
orders
add files
text not null default '[]')SG
VY