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_02_16_071246_add_mark_attendance_companies.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 AddMarkAttendanceCompanies extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::table('companies', function (Blueprint $table) { $table->boolean('mark_attendance')->default(true); $table->time('office_start_time')->nullable(); $table->time('office_end_time')->nullable(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::table('companies', function (Blueprint $table) { $table->dropColumn('mark_attendance'); $table->dropColumn('office_start_time'); $table->dropColumn('office_end_time'); }); } }