Config for test database.

This commit is contained in:
James Cole
2015-03-18 22:16:00 +01:00
parent 0b16765f37
commit 3c4e7158a1
4 changed files with 5 additions and 3 deletions

View File

@@ -18,14 +18,14 @@ class ChangesForV332 extends Migration {
Schema::table(
'accounts', function (Blueprint $table) {
$table->boolean('encrypted');
$table->boolean('encrypted')->default(0);
}
);
Schema::table(
'reminders', function (Blueprint $table) {
$table->text('metadata');
$table->text('metadata')->nullable();
}
);