api ms group by slug, views, ins

This commit is contained in:
2024-10-25 15:47:11 +03:00
parent 45d51c7119
commit f7838ea665
5 changed files with 72 additions and 3 deletions

View File

@ -20,6 +20,8 @@ return new class extends Migration {
$table->string("dependence", 255)->nullable(true);
$table->text("path_to_archive")->nullable(false);
$table->integer("status")->default(1);
$table->integer("installations")->nullable(false)->default(0);
$table->integer("views")->nullable(false)->default(0);
$table->timestamps();
});
}