v1.5.15a - Changes by Anders

This commit is contained in:
2021-04-27 12:27:46 +02:00
parent e5126ae5ae
commit cb690a470d
8 changed files with 180 additions and 35 deletions
@@ -19,7 +19,8 @@ class CreateUserEventsTable extends Migration
$table->timestamps();
$table->foreignid("user_id")->constrained("users", "id");
$table->foreignid("event_id")->constrained("events", "id");
$table->foreignid("event_id")->nullable()->constrained("events", "id");
$table->foreignid("multiple_event_id")->nullable()->constrained("multiple_events", "id");
});
}