Moved from "app/src" to "app/application".

Otherwise phpstorm doesn't understand the paths correctly. He thinks that this is not a complete application, but a package. And when creating a class, the namespace indicates “app” with a small letter, but should be “App”.
This commit is contained in:
2024-04-11 19:52:37 +05:00
parent e41f63f94f
commit b7d0a2453e
314 changed files with 5 additions and 5 deletions

View File

@@ -0,0 +1,53 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('users', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('email')->unique();
$table->timestamp('email_verified_at')->nullable();
$table->string('password');
$table->string('nickname')->unique()->nullable();
$table->rememberToken();
$table->unsignedInteger('lang')->nullable();
$table->string('timezone', 50)->nullable();
$table->timestamps();
$table->softDeletes();
});
Schema::create('password_reset_tokens', function (Blueprint $table) {
$table->string('email')->primary();
$table->string('token');
$table->timestamp('created_at')->nullable();
});
Schema::create('sessions', function (Blueprint $table) {
$table->string('id')->primary();
$table->foreignId('user_id')->nullable()->index();
$table->string('ip_address', 45)->nullable();
$table->text('user_agent')->nullable();
$table->longText('payload');
$table->integer('last_activity')->index();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('users');
Schema::dropIfExists('password_reset_tokens');
Schema::dropIfExists('sessions');
}
};

View File

@@ -0,0 +1,35 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('cache', function (Blueprint $table) {
$table->string('key')->primary();
$table->mediumText('value');
$table->integer('expiration');
});
Schema::create('cache_locks', function (Blueprint $table) {
$table->string('key')->primary();
$table->string('owner');
$table->integer('expiration');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('cache');
Schema::dropIfExists('cache_locks');
}
};

View File

@@ -0,0 +1,57 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('jobs', function (Blueprint $table) {
$table->id();
$table->string('queue')->index();
$table->longText('payload');
$table->unsignedTinyInteger('attempts');
$table->unsignedInteger('reserved_at')->nullable();
$table->unsignedInteger('available_at');
$table->unsignedInteger('created_at');
});
Schema::create('job_batches', function (Blueprint $table) {
$table->string('id')->primary();
$table->string('name');
$table->integer('total_jobs');
$table->integer('pending_jobs');
$table->integer('failed_jobs');
$table->longText('failed_job_ids');
$table->mediumText('options')->nullable();
$table->integer('cancelled_at')->nullable();
$table->integer('created_at');
$table->integer('finished_at')->nullable();
});
Schema::create('failed_jobs', function (Blueprint $table) {
$table->id();
$table->string('uuid')->unique();
$table->text('connection');
$table->text('queue');
$table->longText('payload');
$table->longText('exception');
$table->timestamp('failed_at')->useCurrent();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('jobs');
Schema::dropIfExists('job_batches');
Schema::dropIfExists('failed_jobs');
}
};

View File

@@ -0,0 +1,55 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
use Illuminate\Support\Carbon;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('roles', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->string('code')->unique();
$table->timestamps();
$table->softDeletes();
});
DB::table('roles')->insert([
'name' => 'Administrator',
'code' => 'admin',
'created_at' => Carbon::now(),
'updated_at' => Carbon::now()
]);
Schema::create('role_user', function (Blueprint $table) {
$table->unsignedBigInteger('user_id')->index();
$table->unsignedBigInteger('role_id');
$table->foreign('user_id')->references('id')->on('users');
$table->foreign('role_id')->references('id')->on('roles');
$table->primary(['user_id', 'role_id']);
});
Schema::create('role_permission', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('role_id')->index();
$table->string('permission');
$table->foreign('role_id')->references('id')->on('roles');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('role_permission');
Schema::dropIfExists('role_user');
Schema::dropIfExists('roles');
}
};

View File

@@ -0,0 +1,106 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration
{
/**
* Run the migrations.
*/
public function up(): void
{
Schema::create('projects', function (Blueprint $table) {
$table->id();
$table->string('name')->index();
$table->string('code')->unique();
$table->string('http_host')->nullable()->unique()->comment('Scheme and Domain and Port (example: http://localhost:8080).');
$table->boolean('is_public')->default(0)->index();
$table->timestamps();
$table->softDeletes()->index();
$table->index('created_at');
$table->index(['is_public', 'deleted_at']);
});
Schema::table('roles', function (Blueprint $table) {
$table->unsignedInteger('morph_type')->nullable();
$table->unsignedBigInteger('morph_id')->nullable();
$table->index(['morph_type', 'morph_id']);
$table->dropUnique(['code']);
$table->unique(['code', 'morph_type', 'morph_id']);
});
Schema::create('storage', function (Blueprint $table) {
$table->id();
$table->string('file');
$table->unsignedInteger('morph_type');
$table->unsignedBigInteger('morph_id')->nullable()->index();
$table->unsignedInteger('type')->comment('File type (main photo, video, gallery, etc.).');
$table->json('data')->nullable();
$table->timestamps();
$table->softDeletes();
$table->unsignedBigInteger('created_user_id')->nullable();
$table->foreign('created_user_id')->references('id')->on('users');
$table->index(['morph_type', 'morph_id']);
});
Schema::create('project_languages', function (Blueprint $table) {
$table->id();
$table->unsignedBigInteger('project_id')->index();
$table->foreign('project_id')->references('id')->on('projects');
$table->string('code');
$table->string('title');
$table->boolean('is_default');
$table->integer('sort')->index();
$table->timestamps();
$table->softDeletes();
$table->index(['project_id', 'deleted_at']);
$table->unique(['project_id', 'code']);
});
Schema::create('project_content', function (Blueprint $table) {
$table->id();
$table->string('title')->index();
$table->unsignedBigInteger('project_id')->index();
$table->foreign('project_id')->references('id')->on('projects');
$table->unsignedBigInteger('language_id')->index();
$table->foreign('language_id')->references('id')->on('project_languages');
$table->longText('description');
$table->timestamps();
$table->softDeletes();
$table->index(['project_id', 'language_id', 'deleted_at']);
});
Schema::create('project_links', function (Blueprint $table) {
$table->id();
$table->string('title');
$table->string('link');
$table->unsignedBigInteger('project_id')->index();
$table->foreign('project_id')->references('id')->on('projects');
$table->unsignedBigInteger('language_id')->nullable()->index();
$table->foreign('language_id')->references('id')->on('project_languages');
$table->index(['project_id', 'language_id', 'deleted_at']);
$table->integer('sort')->index();
$table->softDeletes();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('project_links');
Schema::dropIfExists('project_content');
Schema::dropIfExists('project_languages');
Schema::dropIfExists('storage');
Schema::table('roles', function (Blueprint $table) {
$table->dropUnique(['code', 'morph_type', 'morph_id']);
$table->dropColumn('morph_type');
$table->dropColumn('morph_id');
$table->unique('code');
});
Schema::dropIfExists('projects');
}
};