increments('id'); $table->string('title')->index()->comment('教程名称'); $table->text('excerpt')->nullable()->comment('教程简介'); $table->decimal('prices', 8, 2)->default(19.99)->comment('价格'); $table->integer('user_id')->unsigned()->index()->comment('用户 id'); $table->integer('image_id')->unsigned()->index()->nullable()->comment('封面图 id'); $table->timestamps(); }); } public function down() { Schema::drop('course_books'); } }