����JFIF���������
1#@!#!123s
D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
nc6d095
/
study.helpmanscs.com
/
database
/
migrations
/
Filename :
2020_11_10_193459_edit_webinars_table.php
back
Copy
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; class EditWebinarsTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('webinars', function (Blueprint $table) { DB::statement('ALTER TABLE `webinars` DROP COLUMN `start_time`,DROP COLUMN `end_time`'); $table->integer('duration')->after('start_date')->unsigned(); $table->boolean('downloadable')->after('support')->default(false); }); } }