1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- class CreateMusicsTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('musics', function (Blueprint $table) {
- $table->id();
- $table->string('title');
- $table->text('description');
- $table->integer('played');
- $table->integer('downloads');
- $table->boolean('hidden');
- $table->string('file_name');
- $table->string('type');
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('musics');
- }
- }
|