PATH:
home
/
lab2454c
/
omvstudio.com
/
database
/
migrations
<?php use Illuminate\Database\Migrations\Migration; use Illuminate\Database\Schema\Blueprint; use Illuminate\Support\Facades\Schema; return new class extends Migration { /** * Run the migrations. * * @return void */ public function up() { Schema::create('music', function (Blueprint $table) { $table->id(); $table->string('title'); $table->string('slug'); $table->longText('description')->nullable(); $table->string('cover_image')->nullable(); $table->string('upload_music')->nullable(); $table->string('upload_video')->nullable(); $table->tinyInteger('is_featured')->default('0'); $table->enum('status', ['active', 'inactive'])->default('active'); $table->timestamps(); }); } /** * Reverse the migrations. * * @return void */ public function down() { Schema::dropIfExists('music'); } };
[-] 2022_08_25_093559_create_category_movie_table.php
[edit]
[-] 2022_08_30_054631_create_entertains_table.php
[edit]
[-] 2022_08_27_095725_create_home_config_works_table.php
[edit]
[-] 2017_08_11_074006_create_menu_items_wp_table.php
[edit]
[-] 2014_10_12_100000_create_password_resets_table.php
[edit]
[-] 2014_10_11_091805_create_roles_table.php
[edit]
[-] 2022_08_24_103328_create_categories_table.php
[edit]
[-] 2019_08_19_000000_create_failed_jobs_table.php
[edit]
[+]
..
[-] 2019_12_14_000001_create_personal_access_tokens_table.php
[edit]
[-] 2022_08_29_055347_create_media_table.php
[edit]
[-] 2022_08_19_061902_create_pages_table.php
[edit]
[-] 2022_09_19_062822_create_reviews_table.php
[edit]
[-] 2023_04_19_064033_create_sports_table.php
[edit]
[-] 2022_08_25_060715_create_movies_table.php
[edit]
[-] 2022_09_24_075457_create_referral_payments_table.php
[edit]
[-] 2014_10_12_000000_create_users_table.php
[edit]
[-] 2022_11_07_092838_create_movie_user_table.php
[edit]
[-] 2022_08_23_113004_create_faqs_table.php
[edit]
[-] 2017_08_11_073824_create_menus_wp_table.php
[edit]
[-] 2023_04_20_125036_create_music_table.php
[edit]
[-] 2022_08_23_122941_create_contacts_table.php
[edit]
[-] 2022_09_09_074903_create_payments_table.php
[edit]
[-] 2022_09_23_112402_create_bank_details_table.php
[edit]
[-] 2022_08_18_104751_create_site_settings_table.php
[edit]
[-] 2022_08_22_102929_create_page_banners_table.php
[edit]