Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
gilour
/
database
/
migrations
:
2015_12_19_045656_add_country_company.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 AddCountryCompany extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('companies', function (Blueprint $table) { $table->string('country'); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('companies', function (Blueprint $table) { $table->dropColumn('country'); }); } }