Skip to content

Commit

Permalink
Fixed DB format for nullable EULA
Browse files Browse the repository at this point in the history
  • Loading branch information
snipe committed Mar 5, 2015
1 parent 4076b29 commit 2115c82
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public function up()
});

Schema::table('categories', function ($table) {
$table->longText('eula_text');
$table->longText('eula_text')->nullable()->default(NULL);
$table->boolean('use_default_eula')->default(0);
$table->boolean('require_acceptance')->default(0);
});
Expand Down

0 comments on commit 2115c82

Please sign in to comment.