Added a way to starr a product, so it floats on top of the list of products

This commit is contained in:
Krzysztof Płaczek
2024-05-19 11:43:56 +02:00
parent 584bdcdf89
commit a204439a27
4 changed files with 21 additions and 8 deletions

View File

@@ -31,6 +31,7 @@ if (!Capsule::schema()->hasTable('products')) {
$table->string('variantCode');
$table->string('modelCode');
$table->string('url');
$table->boolean('starred')->default(false);
$table->timestamps();
});
}