Some layout and content updates

This commit is contained in:
James Cole
2015-03-01 07:50:26 +01:00
parent d099c33e5b
commit d1cf683f57
8 changed files with 332 additions and 14 deletions

View File

@@ -36,7 +36,7 @@ class CreateAccountsTable extends Migration
$table->softDeletes();
$table->integer('user_id')->unsigned();
$table->integer('account_type_id')->unsigned();
$table->string('name', 100);
$table->string('name', 1024);
$table->boolean('active');
// connect accounts to users

View File

@@ -0,0 +1,45 @@
<?php
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
/**
* Class ChangesForV332
*/
class ChangesForV332 extends Migration {
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::table(
'transaction_journals', function (Blueprint $table) {
$table->boolean('encrypted');
}
);
Schema::table(
'accounts', function (Blueprint $table) {
$table->boolean('encrypted');
}
);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
//
}
}