table('admin_app', [ 'comment' => 'appId和appSecret表', ])->setCollation('utf8mb4_general_ci'); $table->addColumn('app_id', 'string', [ 'limit' => 50, 'default' => '', 'comment' => '应用id' ])->addColumn('app_secret', 'string', [ 'limit' => 50, 'default' => '', 'comment' => '应用密码' ])->addColumn('app_name', 'string', [ 'limit' => 50, 'default' => '', 'comment' => '应用名称' ])->addColumn('app_status', 'integer', [ 'limit' => MysqlAdapter::INT_TINY, 'default' => 1, 'comment' => '应用状态:0表示禁用,1表示启用' ])->addColumn('app_info', 'text', [ 'comment' => '应用说明', 'null' => true ])->addColumn('app_api', 'text', [ 'comment' => '当前应用允许请求的全部API接口', 'null' => true ])->addColumn('app_group', 'string', [ 'limit' => 128, 'default' => 'default', 'comment' => '当前应用所属的应用组唯一标识' ])->addColumn('app_add_time', 'integer', [ 'limit' => 11, 'default' => 0, 'comment' => '应用创建时间' ])->addColumn('app_api_show', 'text', [ 'comment' => '前台样式显示所需数据格式', 'null' => true ])->addIndex(['app_id'], ['unique' => true])->create(); } }