ПЛ
Size: a a a
AY
Т
Т
Т
PB
AY
PB
AY
PB
AY
AY
PB
AY
?
AY
Schema::
create('articles', function (Blueprint $table) {
$table->bigIncrements('id');
$table->string('img_main')->nullable();
$table->string('title');
$table->text('description')->nullable();
$table->string('code');
$table->string('seo_title')->nullable();
$table->string('seo_description')->nullable();
$table->foreignId('category_id')->nullable()->constrained();
$table->foreignId('author_id')->nullable()->constrained();
$table->foreignId('theme_id')->nullable()->constrained();
$table->timestamps();
$table->boolean('active')->nullable();
$table->boolean('delete')->nullable();
$table->longText('text')->nullable();
$table->string('opengraph_title')->nullable();
$table->string('opengraph_description')->nullable();
$table->string('opengraph_image')->nullable();
});
AG
application/octet-stream
, то есть он вообще опознан как бинарник, если я не ошибаюсь.?
AY
?