Add (ai gen)

This commit is contained in:
2023-10-01 22:23:38 +08:00
parent b8fbfcdac2
commit 274e11193d
8 changed files with 664 additions and 4 deletions

View File

@@ -18,7 +18,7 @@ public function up(): void
$table->string('country_iso');
$table->bigInteger('epoch');
$table->string('filename');
$table->timestamp('last_ai_written_at');
$table->timestamp('last_ai_written_at')->nullable();
$table->integer('write_counts')->default(0);
$table->timestamps();
$table->foreign('category_id')->references('id')->on('categories');

View File

@@ -0,0 +1,32 @@
<?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('shopee_seller_categories', function (Blueprint $table) {
$table->id();
$table->string('seller');
$table->foreignId('category_id');
$table->timestamp('last_ai_written_at')->nullable();
$table->integer('write_counts')->default(0);
$table->timestamps();
$table->foreign('category_id')->references('id')->on('categories');
});
}
/**
* Reverse the migrations.
*/
public function down(): void
{
Schema::dropIfExists('shopee_seller_categories');
}
};