vendor and env first commit

This commit is contained in:
2025-03-28 08:52:46 +01:00
parent f8388bc81b
commit 8f26283832
10976 changed files with 1349952 additions and 2 deletions
@@ -0,0 +1,67 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;
use Carbon\Carbon;
class CreateUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('users', function (Blueprint $table)
{
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password');
$table->boolean('is_admin')->default(0)->index();
$table->boolean('can_be_impersonated')->default(1)->index();
$table->rememberToken();
$table->timestamps();
});
DB::table('users')->insert([
[
'name' => 'Admin',
'email' => 'admin@test.rocks',
'password' => bcrypt('password'),
'is_admin' => 1,
'can_be_impersonated' => 1,
'created_at' => Carbon::now()->toDateTimeString(),
],
[
'name' => 'User',
'email' => 'user@test.rocks',
'password' => bcrypt('password'),
'is_admin' => 0,
'can_be_impersonated' => 1,
'created_at' => Carbon::now()->toDateTimeString(),
],
[
'name' => 'SuperAdmin',
'email' => 'superadmin@test.rocks',
'password' => bcrypt('password'),
'is_admin' => 1,
'can_be_impersonated' => 0,
'created_at' => Carbon::now()->toDateTimeString(),
],
]);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('users');
}
}
@@ -0,0 +1,67 @@
<?php
use Illuminate\Support\Facades\Schema;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Database\Migrations\Migration;
use Illuminate\Support\Facades\DB;
use Carbon\Carbon;
class CreateOtherUsersTable extends Migration
{
/**
* Run the migrations.
*
* @return void
*/
public function up()
{
Schema::create('other_users', function (Blueprint $table)
{
$table->increments('id');
$table->string('name');
$table->string('email')->unique();
$table->string('password');
$table->boolean('is_admin')->default(0)->index();
$table->boolean('can_be_impersonated')->default(1)->index();
$table->rememberToken();
$table->timestamps();
});
DB::table('other_users')->insert([
[
'name' => 'OtherAdmin',
'email' => 'otheradmin@test.rocks',
'password' => bcrypt('password'),
'is_admin' => 1,
'can_be_impersonated' => 1,
'created_at' => Carbon::now()->toDateTimeString(),
],
[
'name' => 'OtherUser',
'email' => 'otheruser@test.rocks',
'password' => bcrypt('password'),
'is_admin' => 0,
'can_be_impersonated' => 1,
'created_at' => Carbon::now()->toDateTimeString(),
],
[
'name' => 'OtherSuperAdmin',
'email' => 'othersuperadmin@test.rocks',
'password' => bcrypt('password'),
'is_admin' => 1,
'can_be_impersonated' => 0,
'created_at' => Carbon::now()->toDateTimeString(),
],
]);
}
/**
* Reverse the migrations.
*
* @return void
*/
public function down()
{
Schema::dropIfExists('other_users');
}
}