v0.9.10 - Added wants_emails

This commit is contained in:
frederikpyt
2020-08-13 13:50:00 +02:00
parent 7b52c43a05
commit bd0d504ab8
3 changed files with 20 additions and 7 deletions
@@ -29,6 +29,7 @@ class CreateUsersTable extends Migration
$table->integer("phone")->unique();
$table->rememberToken();
$table->foreignId("resource_id")->nullable()->constrained("resources", "id");
$table->boolean("wants_emails")->default(true);
$table->timestamps();
});
}