Skip to content

Commit

Permalink
Merge branch 'master' into next
Browse files Browse the repository at this point in the history
  • Loading branch information
dolezel committed Dec 2, 2019
2 parents 0fb00f2 + 621bc50 commit 05040f6
Show file tree
Hide file tree
Showing 4 changed files with 52 additions and 52 deletions.
2 changes: 1 addition & 1 deletion docs/indexes.md
Expand Up @@ -13,7 +13,7 @@
- `unique` _[boolean]_ - set to true if this is a unique index
- `where` _[string]_ - raw sql for where clause of index
- `concurrently` _[boolean]_ - create this index concurrently
- `opclass` _[string]_ - name of an operator class to use
- `opclass` _[[Name](migrations.md#type)]_ - name of an operator class to use
- `method` _[string]_ - btree | hash | gist | spgist | gin

**Aliases:** `addIndex`
Expand Down
86 changes: 43 additions & 43 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 7 additions & 7 deletions package.json
Expand Up @@ -51,36 +51,36 @@
"devDependencies": {
"@types/chai": "4.2.5",
"@types/chai-as-promised": "7.1.2",
"@types/lodash": "4.14.148",
"@types/lodash": "4.14.149",
"@types/mkdirp": "0.5.2",
"@types/mocha": "5.2.7",
"@types/proxyquire": "1.3.28",
"@types/sinon": "7.5.0",
"@types/sinon": "7.5.1",
"@types/sinon-chai": "3.2.3",
"@typescript-eslint/eslint-plugin": "^2.7.0",
"@typescript-eslint/parser": "^2.7.0",
"@typescript-eslint/eslint-plugin": "^2.9.0",
"@typescript-eslint/parser": "^2.9.0",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"config": "3.2.4",
"cross-env": "6.0.3",
"dotenv": "8.2.0",
"eslint": "6.7.0",
"eslint": "6.7.2",
"eslint-config-airbnb-base": "14.0.0",
"eslint-config-prettier": "6.7.0",
"eslint-import-resolver-typescript": "^2.0.0",
"eslint-plugin-import": "2.18.2",
"eslint-plugin-prettier": "3.1.1",
"eslint-plugin-security": "1.4.0",
"husky": "3.1.0",
"lint-staged": "9.4.3",
"lint-staged": "9.5.0",
"mocha": "6.2.2",
"pg": "7.14.0",
"prettier": "1.19.1",
"proxyquire": "2.1.3",
"rimraf": "3.0.0",
"sinon": "7.5.0",
"sinon-chai": "3.3.0",
"ts-node": "8.5.2",
"ts-node": "8.5.4",
"typescript": "3.7.2"
},
"peerDependencies": {
Expand Down
2 changes: 1 addition & 1 deletion src/operations/indexesTypes.ts
Expand Up @@ -5,7 +5,7 @@ export interface CreateIndexOptions {
unique?: boolean
where?: string
concurrently?: boolean
opclass?: string
opclass?: Name
method?: 'btree' | 'hash' | 'gist' | 'spgist' | 'gin'
}

Expand Down

0 comments on commit 05040f6

Please sign in to comment.