diff --git a/database/migrations/2024_04_17_104025_video_update.php b/database/migrations/2024_04_17_104025_video_update.php index adda7f0..b459898 100644 --- a/database/migrations/2024_04_17_104025_video_update.php +++ b/database/migrations/2024_04_17_104025_video_update.php @@ -12,7 +12,8 @@ return new class extends Migration { Schema::create('video_updates', function (Blueprint $table) { $table->id(); $table->string('file_name', 100); - $table->string('url'); + $table->string('file'); + $table->boolean('is_selected'); $table->timestamps(); }); } diff --git a/database/migrations/2024_04_17_104033_apk_update.php b/database/migrations/2024_04_17_104033_apk_update.php index 2342c14..900dabf 100644 --- a/database/migrations/2024_04_17_104033_apk_update.php +++ b/database/migrations/2024_04_17_104033_apk_update.php @@ -13,7 +13,7 @@ return new class extends Migration Schema::create('apk_updates', function (Blueprint $table) { $table->id(); $table->string('name', 100); - $table->string('url'); + $table->string('file'); $table->integer('version_code'); $table->timestamps(); });