Thing with order and should fix Travis.

This commit is contained in:
James Cole
2015-03-27 07:20:32 +01:00
parent f80de12cb5
commit 6dddd6629d
14 changed files with 103 additions and 46 deletions

View File

@@ -0,0 +1,33 @@
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
class ChangesForV333 extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table(
'transaction_journals', function (Blueprint $table) {
$table->smallInteger('order',false,true)->default(0);
}
);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}