Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
database
/
migrations
:
2016_04_15_070953_license_expired_column.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php use Illuminate\Database\Schema\Blueprint; use Illuminate\Database\Migrations\Migration; class LicenseExpiredColumn extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table("companies", function(Blueprint $table) { $table->boolean("license_expired")->default(false); }); } /** * Reverse the migrations. * * @return void */ public function down() { // } }