2020_04_10_175800_create_musics_table.php 852 B

1234567891011121314151617181920212223242526272829303132333435363738
  1. <?php
  2. use Illuminate\Database\Migrations\Migration;
  3. use Illuminate\Database\Schema\Blueprint;
  4. use Illuminate\Support\Facades\Schema;
  5. class CreateMusicsTable extends Migration
  6. {
  7. /**
  8. * Run the migrations.
  9. *
  10. * @return void
  11. */
  12. public function up()
  13. {
  14. Schema::create('musics', function (Blueprint $table) {
  15. $table->id();
  16. $table->string('title');
  17. $table->text('description');
  18. $table->integer('played');
  19. $table->integer('downloads');
  20. $table->boolean('hidden');
  21. $table->string('file_name');
  22. $table->string('type');
  23. $table->timestamps();
  24. });
  25. }
  26. /**
  27. * Reverse the migrations.
  28. *
  29. * @return void
  30. */
  31. public function down()
  32. {
  33. Schema::dropIfExists('musics');
  34. }
  35. }