table('train_class_assign')->setComment('课程指派记录表'); $table->addColumn('class_id', 'integer', ['limit'=> 10, 'comment' => '课程id', 'default'=> 0]) ->addColumn('employee_id', 'integer', ['limit'=> 10, 'comment' => '指派员工id', 'default'=> 0]) ->addColumn('root_id', 'integer', ['limit'=> 10, 'comment' => '组织id', 'default'=> 0]) ->addColumn('addtime', 'timestamp', ['default' => 'CURRENT_TIMESTAMP', 'comment' => '指派时间']) ->create(); } }