Add (ai gen)
This commit is contained in:
@@ -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');
|
||||
|
||||
@@ -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');
|
||||
}
|
||||
};
|
||||
Reference in New Issue
Block a user