whoami7 - Manager
:
/
home
/
qbizpnmr
/
arif.umairtax.com
/
database
/
migrations
/
Upload File:
files >> /home/qbizpnmr/arif.umairtax.com/database/migrations/2022_05_18_162443_create_schedulers_table.php
<?php /** * Invoice Ninja (https://invoiceninja.com). * * @link https://github.com/invoiceninja/invoiceninja source repository * * @copyright Copyright (c) 2021. Invoice Ninja LLC (https://invoiceninja.com) * * @license https://www.elastic.co/licensing/elastic-license */ 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::create('schedulers', function (Blueprint $table) { $table->id(); $table->boolean('paused')->default(false); $table->boolean('is_deleted')->default(false); $table->string('repeat_every'); $table->timestamp('start_from')->nullable(); $table->timestamp('scheduled_run')->nullable(); $table->foreignIdFor(\App\Models\Company::class); $table->timestamps(); $table->softDeletes(); }); } /** * Reverse the migrations. * * @return void */ public function down() { } };
Copyright ©2021 || Defacer Indonesia