Файл: database/migrations/2020_11_11_020127_create_cronjobs_table.php
Строк: 31
<?php
use IlluminateDatabaseMigrationsMigration;
use IlluminateDatabaseSchemaBlueprint;
use IlluminateSupportFacadesSchema;
class CreateCronjobsTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('cronjobs', function (Blueprint $table) {
$table->integer('id', true);
$table->enum('name', ['check', 'email', 'clean']);
$table->timestamp('updated_at')->useCurrent();
$table->timestamp('created_at')->useCurrent();
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('cronjobs');
}
}