This commit is contained in:
RundelhausCode 2021-04-06 12:52:08 +02:00
parent 1f07affcec
commit e84b52c27d
1 changed files with 8 additions and 0 deletions

8
Backend/test.php Normal file
View File

@ -0,0 +1,8 @@
<?php
use Backend\Models\AdminUser;
require_once ('Database/databaseMigration.php');
AdminUser::firstOrCreate([
'user_name' => '', 'password' => password_hash('',PASSWORD_DEFAULT)
]);