Scan bills when editing and creating journals.

This commit is contained in:
James Cole
2015-03-01 08:15:24 +01:00
parent d1cf683f57
commit 0d0df5f143
4 changed files with 29 additions and 19 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', 1024);
$table->string('name', 100);
$table->boolean('active');
// connect accounts to users

View File

@@ -15,12 +15,6 @@ class ChangesForV332 extends Migration {
*/
public function up()
{
Schema::table(
'transaction_journals', function (Blueprint $table) {
$table->boolean('encrypted');
}
);
Schema::table(
'accounts', function (Blueprint $table) {