my-idlers/database/migrations/2022_03_09_022939_add_homepage_amount_cols_to_settings.php
cp6 e9123763f8 Added settings for due soon & recently added amounts
Added settings for due soon & recently added amounts tables on the homepage
2022-03-09 13:41:12 +11:00

34 lines
689 B
PHP

<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table('settings', function (Blueprint $table) {
$table->integer('due_soon_amount')->default(6);
$table->integer('recently_added_amount')->default(6);
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table('settings', function (Blueprint $table) {
//
});
}
};