File "2016_02_10_133843_timezone_field.php"
Full Path: /home/isoftco/public_html/hrm/database/migrations/2016_02_10_133843_timezone_field.php
File size: 645 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class TimezoneField extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table("companies", function(Blueprint $table) {
$table->string("timezone", 10)->after("currency_symbol")->default("+00:00=29");
});
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::table("companies", function(Blueprint $table) {
$table->dropColumn("timezone");
});
}
}