category default limit

This commit is contained in:
merdan 2022-03-09 15:43:30 +05:00
parent 5a593bbe7b
commit ff6d4a0a84
1 changed files with 1 additions and 1 deletions

View File

@ -14,7 +14,7 @@ class AddLimitToCategoriesTable extends Migration
public function up()
{
Schema::table('categories', function (Blueprint $table) {
$table->decimal('product_limit')->unsigned()->default(500);
$table->integer('product_limit')->unsigned()->default(500);
});
}