|
|
|
|
@ -15,8 +15,8 @@ class CreateVisitTimesTable extends Migration
|
|
|
|
|
{
|
|
|
|
|
Schema::create('visit_times', function (Blueprint $table) {
|
|
|
|
|
$table->increments('id');
|
|
|
|
|
$table->dateTime('start_time')->comment('开始时间')->nullable();
|
|
|
|
|
$table->dateTime('end_time')->comment('结束时间')->nullable();
|
|
|
|
|
$table->string('start_time',50)->comment('开始时间')->nullable();
|
|
|
|
|
$table->string('end_time',50)->comment('结束时间')->nullable();
|
|
|
|
|
$table->integer('admin_id')->comment('不用填')->nullable();
|
|
|
|
|
$table->integer('department_id')->comment('不用填')->nullable();
|
|
|
|
|
$table->timestamps();
|
|
|
|
|
|