Mostly cleanup and bug fixes.

This commit is contained in:
James Cole
2014-11-25 21:04:00 +01:00
parent 918041258e
commit f05d626e38
28 changed files with 68 additions and 1594 deletions

View File

@@ -26,7 +26,7 @@ class EventTableAdditions1 extends Migration
// remove some fields:
Schema::table(
'reminders', function (Blueprint $table) {
$table->boolean('notnow');
$table->boolean('notnow')->default(0);
$table->integer('remindersable_id')->unsigned()->nullable();
$table->string('remindersable_type')->nullable();
}