first commit

This commit is contained in:
浪子
2026-03-19 16:44:38 +08:00
commit ff2af385b9
100 changed files with 16826 additions and 0 deletions
@@ -0,0 +1,49 @@
<?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->rememberToken();
$table->timestamps();
});
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');
}
};
@@ -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')->index();
});
Schema::create('cache_locks', function (Blueprint $table) {
$table->string('key')->primary();
$table->string('owner');
$table->integer('expiration')->index();
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('cache');
Schema::dropIfExists('cache_locks');
}
};
@@ -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');
}
};
@@ -0,0 +1,38 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
public function up(): void
{
Schema::create('store_packages', function (Blueprint $table) {
$table->id();
$table->enum('type', ['plugin', 'theme']);
$table->string('slug', 64);
$table->string('name', 128);
$table->string('summary', 255)->default('');
$table->text('description')->nullable();
$table->string('author', 64)->default('');
$table->string('homepage', 512)->default('');
$table->string('icon_url', 512)->default('');
$table->string('license', 32)->default('');
$table->enum('status', ['draft', 'published', 'hidden', 'deprecated'])->default('draft');
$table->boolean('is_featured')->default(false);
$table->integer('sort_order')->default(0);
$table->unsignedInteger('download_count')->default(0);
$table->string('latest_version', 32)->default('');
$table->timestamps();
$table->unique(['type', 'slug']);
$table->index(['type', 'status']);
$table->index(['is_featured', 'sort_order']);
});
}
public function down(): void
{
Schema::dropIfExists('store_packages');
}
};
@@ -0,0 +1,38 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
public function up(): void
{
Schema::create('store_versions', function (Blueprint $table) {
$table->id();
$table->foreignId('package_id')->constrained('store_packages')->cascadeOnDelete();
$table->string('version', 32);
$table->text('changelog')->nullable();
$table->string('typecho_min', 16)->default('1.2.0');
$table->string('typecho_max', 16)->default('');
$table->string('php_min', 16)->default('7.4');
$table->string('php_max', 16)->default('');
$table->string('php_extensions', 512)->default('');
$table->string('package_url', 1024);
$table->unsignedInteger('package_size')->default(0);
$table->char('sha256', 64);
$table->boolean('is_stable')->default(true);
$table->boolean('is_latest')->default(false);
$table->unsignedInteger('download_count')->default(0);
$table->dateTime('published_at')->useCurrent();
$table->timestamps();
$table->unique(['package_id', 'version']);
$table->index(['package_id', 'is_latest']);
});
}
public function down(): void
{
Schema::dropIfExists('store_versions');
}
};
@@ -0,0 +1,24 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
public function up(): void
{
Schema::create('store_screenshots', function (Blueprint $table) {
$table->id();
$table->foreignId('package_id')->constrained('store_packages')->cascadeOnDelete();
$table->string('image_url', 1024);
$table->string('caption', 255)->default('');
$table->integer('sort_order')->default(0);
$table->timestamps();
});
}
public function down(): void
{
Schema::dropIfExists('store_screenshots');
}
};
@@ -0,0 +1,27 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
public function up(): void
{
Schema::create('store_categories', function (Blueprint $table) {
$table->id();
$table->enum('type', ['plugin', 'theme']);
$table->string('name', 64);
$table->string('slug', 64);
$table->string('description', 255)->default('');
$table->integer('sort_order')->default(0);
$table->timestamps();
$table->unique(['type', 'slug']);
});
}
public function down(): void
{
Schema::dropIfExists('store_categories');
}
};
@@ -0,0 +1,21 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
public function up(): void
{
Schema::create('store_package_categories', function (Blueprint $table) {
$table->foreignId('package_id')->constrained('store_packages')->cascadeOnDelete();
$table->foreignId('category_id')->constrained('store_categories')->cascadeOnDelete();
$table->primary(['package_id', 'category_id']);
});
}
public function down(): void
{
Schema::dropIfExists('store_package_categories');
}
};
@@ -0,0 +1,27 @@
<?php
use Illuminate\Database\Migrations\Migration;
use Illuminate\Database\Schema\Blueprint;
use Illuminate\Support\Facades\Schema;
return new class extends Migration {
public function up(): void
{
Schema::create('store_download_logs', function (Blueprint $table) {
$table->id();
$table->foreignId('package_id')->constrained('store_packages')->cascadeOnDelete();
$table->foreignId('version_id')->constrained('store_versions')->cascadeOnDelete();
$table->string('site_url', 512)->default('');
$table->string('typecho_version', 16)->default('');
$table->string('php_version', 16)->default('');
$table->string('ip', 45)->default('');
$table->string('user_agent', 512)->default('');
$table->dateTime('created_at')->useCurrent();
});
}
public function down(): void
{
Schema::dropIfExists('store_download_logs');
}
};