KI-generierte Bilder: eigener Lizenztyp, Anbieter-Bestätigung, Kennzeichnung
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
This commit is contained in:
parent
6e0b2b1814
commit
cc7b3c3379
9 changed files with 255 additions and 31 deletions
|
|
@ -0,0 +1,28 @@
|
|||
<?php
|
||||
|
||||
use Illuminate\Database\Migrations\Migration;
|
||||
use Illuminate\Database\Schema\Blueprint;
|
||||
use Illuminate\Support\Facades\Schema;
|
||||
|
||||
/**
|
||||
* KI-Kennzeichnung für PM-Bilder (12.06.2026): Flag für KI-generierte
|
||||
* Titelbilder — Grundlage für das öffentliche Label auf den Portal-Seiten
|
||||
* (Art. 50 EU AI Act, Transparenzpflicht ab 02.08.2026) und für die
|
||||
* redaktionelle Sicht im Admin.
|
||||
*/
|
||||
return new class extends Migration
|
||||
{
|
||||
public function up(): void
|
||||
{
|
||||
Schema::table('press_release_images', function (Blueprint $table): void {
|
||||
$table->boolean('is_ai_generated')->default(false)->after('rights_confirmed_at');
|
||||
});
|
||||
}
|
||||
|
||||
public function down(): void
|
||||
{
|
||||
Schema::table('press_release_images', function (Blueprint $table): void {
|
||||
$table->dropColumn('is_ai_generated');
|
||||
});
|
||||
}
|
||||
};
|
||||
Loading…
Add table
Add a link
Reference in a new issue