master
cody 4 months ago
parent 7d79bfe8c1
commit 838aaff3bd

@ -14,6 +14,10 @@ return new class extends Migration
public function up() public function up()
{ {
Schema::table('course_contents', function (Blueprint $table) { Schema::table('course_contents', function (Blueprint $table) {
// 课程方向
$table->string('direction')->nullable()->comment('课程方向');
// 备注
$table->string('remark')->nullable()->comment('备注');
// 经度 // 经度
$table->string('longitude')->nullable()->comment('经度'); $table->string('longitude')->nullable()->comment('经度');
// 纬度 // 纬度

@ -15,10 +15,6 @@ return new class extends Migration {
Schema::table('courses', function (Blueprint $table) { Schema::table('courses', function (Blueprint $table) {
// 已审核学员是否自动进入校友库 // 已审核学员是否自动进入校友库
$table->boolean('auto_schoolmate')->default(false)->comment('已审核学员是否自动进入校友库0否1是'); $table->boolean('auto_schoolmate')->default(false)->comment('已审核学员是否自动进入校友库0否1是');
// 课程方向
$table->string('direction')->nullable()->comment('课程方向');
// 备注
$table->string('remark')->nullable()->comment('备注');
// 经度 // 经度
$table->string('longitude')->nullable()->comment('经度'); $table->string('longitude')->nullable()->comment('经度');
// 纬度 // 纬度

Loading…
Cancel
Save