123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- use Illuminate\Database\Migrations\Migration;
- use Illuminate\Database\Schema\Blueprint;
- use Illuminate\Support\Facades\Schema;
- //课程章节
- class CreateCourseChaptersTable extends Migration
- {
- /**
- * Run the migrations.
- *
- * @return void
- */
- public function up()
- {
- Schema::create('course_chapters', function (Blueprint $table) {
- $table->id();
- $table->integer('course_id');
- $table->string('title')->comment('章节名');
- $table->integer('sort')->default(0);
- $table->tinyInteger('status')->default(1)->comment('是否显示,1显示,0不显示');
- $table->softDeletes();
- $table->timestamps();
- });
- }
- /**
- * Reverse the migrations.
- *
- * @return void
- */
- public function down()
- {
- Schema::dropIfExists('course_chapters');
- }
- }
|