Skip to content

Commit

Permalink
Fixes #141
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed May 24, 2014
1 parent dfa5d1c commit 9714178
Showing 1 changed file with 30 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
<?php

use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;

class AlterDefaultLicenseDepreciationId extends Migration {

/**
* Run the migrations.
*
* @return void
*/
public function up()
{
//
DB::statement('ALTER TABLE licenses MODIFY column depreciation_id tinyint(1) NOT NULL DEFAULT "0"');

}

/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}

}

0 comments on commit 9714178

Please sign in to comment.