| 123456789101112131415161718192021222324252627 |
- 'use strict';
- module.exports = {
- player: {
- // Index setting, modify it on your need
- indexes: [
- {
- // Index keys
- keys: ['account'],
- //unique: true //ts--唯一约束去掉
- },
- {
- // Index keys
- keys: ['userId']
- }
- ]
- },
- agenter: {
- // Index setting, modify it on your need
- indexes: [
- {
- // Index keys
- keys: ['agentNo']
- }
- ]
- }
- };
|