v0.10.0h - Fixed phone number bug, changed phone number from int to string
This commit is contained in:
@@ -26,7 +26,7 @@ class CreateUsersTable extends Migration
|
||||
$table->string('email')->unique();
|
||||
$table->timestamp('email_verified_at')->nullable();
|
||||
$table->string('password');
|
||||
$table->integer("phone")->unique();
|
||||
$table->string("phone", 8)->unique();
|
||||
$table->rememberToken();
|
||||
$table->foreignId("resource_id")->nullable()->constrained("resources", "id");
|
||||
$table->boolean("wants_emails")->default(true);
|
||||
|
||||
Reference in New Issue
Block a user