new db migration
This commit is contained in:
@@ -8,6 +8,7 @@ use Illuminate\Support\Facades\Schema;
|
||||
//Create password table with the rows as id, password, rememberToken and timestamps
|
||||
Capsule::schema()->create("passwords", function (Blueprint $table){
|
||||
$table->id();
|
||||
$table->foreignId("group_id")->constrained("groups");
|
||||
$table->string('password');
|
||||
$table->rememberToken();
|
||||
$table->timestamps();
|
||||
|
||||
Reference in New Issue
Block a user