А
Size: a a a
А
D
IS
D
IS
IS
IS
IS
IS
IS
IS
А
blog_posts
( updated_at
, creation_at
) (2020-01-06) 06:42:18, 2020-01-06 06:42:18))IS
AP
AP
IS
AP
IS
Schema::create('blog_categories', function (Blueprint $table) {
$table->increments('id');
$table->integer('parent_id')->unsigned()->default(1);
$table->string('slug')->unique();
$table->string('title');
$table->text('description')->nullable();
$table->timestamps();
$table->softDeletes();
});
IS
AP