Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
database
/
migrations
:
2019_03_11_092232_nullable_employees_table.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php use Illuminate\Support\Facades\Schema; use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class NullableEmployeesTable extends Migration { /** * Run the migrations. * * @return void */ public function up() { DB::statement('ALTER TABLE `employees` MODIFY `father_name` VARCHAR(255) NULL;'); DB::statement('ALTER TABLE `employees` MODIFY `mobile_number` VARCHAR(255) NULL;'); DB::statement('ALTER TABLE `employees` MODIFY `local_address` VARCHAR(255) NULL;'); DB::statement('ALTER TABLE `employees` MODIFY `permanent_address` VARCHAR(255) NULL;'); } /** * Reverse the migrations. * * @return void */ public function down() { // } }