id(); $table->string('sha256')->nullable()->unique()->index(); $table->string('sha512')->nullable()->unique()->index(); $table->string('name')->nullable(); $table->text('description')->nullable(); $table->boolean('active')->default(true)->index(); $table->json('metadata')->nullable(); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('media_blocklists'); } }