add set media fields

This commit is contained in:
Yisroel Baum 2026-05-25 20:46:00 +03:00
parent 1ce7688d33
commit fa8efd765f
Signed by: yisroelbaum
GPG key ID: 0FA60884F75520A9
10 changed files with 61 additions and 21 deletions

View file

@ -11,6 +11,8 @@ return new class extends Migration
Schema::create('sets', function (Blueprint $table) {
$table->id();
$table->string('name');
$table->text('description');
$table->string('icon_image_url');
});
}