This commit is contained in:
ct
2025-06-13 11:35:18 +08:00
parent 7ffa3d9ca0
commit 53690753c6
42 changed files with 4638 additions and 991 deletions

View File

@@ -22,6 +22,6 @@ public function up()
*/
public function down()
{
DB::statement('DROP EXTENSION vector');
// DB::statement('DROP EXTENSION vector');
}
};

View File

@@ -13,6 +13,7 @@ public function up(): void
{
Schema::create('meme_medias', function (Blueprint $table) {
$table->id();
$table->string('original_id');
$table->enum('type', ['video', 'image']);
$table->enum('sub_type', ['background', 'overlay']);
$table->string('name');