table('admin_user_action', [ 'comment' => '用户操作日志' ])->setCollation('utf8mb4_general_ci'); $table->addColumn('action_name', 'string', [ 'limit' => 50, 'default' => '', 'comment' => '行为名称' ])->addColumn('uid', 'integer', [ 'limit' => 11, 'default' => 0, 'comment' => '操作用户ID' ])->addColumn('nickname', 'string', [ 'limit' => 50, 'default' => '', 'comment' => '用户昵称' ])->addColumn('add_time', 'integer', [ 'limit' => 11, 'default' => 0, 'comment' => '操作时间' ])->addColumn('data', 'text', [ 'null' => true, 'comment' => '用户提交的数据' ])->addColumn('url', 'string', [ 'limit' => 200, 'default' => 0, 'comment' => '操作URL' ])->addIndex(['uid'])->create(); } }