|
|
|
@ -14,6 +14,9 @@ return new class extends Migration
|
|
|
|
public function up()
|
|
|
|
public function up()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
Schema::table('teachers', function (Blueprint $table) {
|
|
|
|
Schema::table('teachers', function (Blueprint $table) {
|
|
|
|
|
|
|
|
$table->string('name')->nullable()->comment('授课老师');
|
|
|
|
|
|
|
|
$table->text('introduce')->nullable()->comment('老师简介');
|
|
|
|
|
|
|
|
$table->string('mobile')->nullable()->comment('联系方式');
|
|
|
|
// 备注
|
|
|
|
// 备注
|
|
|
|
$table->string('remark')->nullable()->comment('备注');
|
|
|
|
$table->string('remark')->nullable()->comment('备注');
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|