Path : /var/www/clients/client0/web25/web/database/migrations/ |
B-Con CMD Config cPanel C-Rdp D-Log Info Jump Mass Ransom Symlink vHost Zone-H |
Current File : /var/www/clients/client0/web25/web/database/migrations/2023_01_01_193653_create_events_table.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::create('events', function (Blueprint $table) { $table->engine = 'InnoDB'; $table->id(); $table->string('title'); $table->text('description'); $table->text('summary'); $table->string('venue'); $table->date('date'); $table->time('start_time'); $table->time('end_time'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('events'); } };