-
-
Notifications
You must be signed in to change notification settings - Fork 137
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(api): update Drizzle Kit and ORM, start using hash indexes
- Loading branch information
1 parent
0757e69
commit 453849b
Showing
9 changed files
with
271 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
DROP INDEX IF EXISTS "urls_blocked_index";--> statement-breakpoint | ||
DROP INDEX IF EXISTS "urls_url_index";--> statement-breakpoint | ||
DROP INDEX IF EXISTS "visits_url_short_base64_index";--> statement-breakpoint | ||
DROP INDEX IF EXISTS "visits_timestamp_index";--> statement-breakpoint | ||
CREATE INDEX IF NOT EXISTS "urls_blocked_index" ON "urls" USING hash (blocked);--> statement-breakpoint | ||
CREATE INDEX IF NOT EXISTS "urls_url_index" ON "urls" USING hash (url);--> statement-breakpoint | ||
CREATE INDEX IF NOT EXISTS "visits_url_short_base64_index" ON "visits" USING hash (url_short_base64);--> statement-breakpoint | ||
CREATE INDEX IF NOT EXISTS "visits_timestamp_index" ON "visits" USING btree (timestamp); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,179 @@ | ||
{ | ||
"id": "5285b7db-7d21-4825-98dc-077f7612ee83", | ||
"prevId": "a1a9d125-cfb1-4769-baca-2f88b80c8dc9", | ||
"version": "7", | ||
"dialect": "postgresql", | ||
"tables": { | ||
"public.blocked_hostnames": { | ||
"name": "blocked_hostnames", | ||
"schema": "", | ||
"columns": { | ||
"hostname": { | ||
"name": "hostname", | ||
"type": "text", | ||
"primaryKey": true, | ||
"notNull": true | ||
}, | ||
"created_at": { | ||
"name": "created_at", | ||
"type": "timestamp with time zone", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": "now()" | ||
} | ||
}, | ||
"indexes": {}, | ||
"foreignKeys": {}, | ||
"compositePrimaryKeys": {}, | ||
"uniqueConstraints": {} | ||
}, | ||
"public.urls": { | ||
"name": "urls", | ||
"schema": "", | ||
"columns": { | ||
"blocked": { | ||
"name": "blocked", | ||
"type": "boolean", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": false | ||
}, | ||
"created_at": { | ||
"name": "created_at", | ||
"type": "timestamp with time zone", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": "now()" | ||
}, | ||
"short_base64": { | ||
"name": "short_base64", | ||
"type": "text", | ||
"primaryKey": true, | ||
"notNull": true | ||
}, | ||
"url": { | ||
"name": "url", | ||
"type": "text", | ||
"primaryKey": false, | ||
"notNull": true | ||
} | ||
}, | ||
"indexes": { | ||
"urls_blocked_index": { | ||
"name": "urls_blocked_index", | ||
"columns": [ | ||
{ | ||
"expression": "blocked", | ||
"isExpression": false, | ||
"asc": true, | ||
"nulls": "last" | ||
} | ||
], | ||
"isUnique": false, | ||
"concurrently": false, | ||
"method": "hash", | ||
"with": {} | ||
}, | ||
"urls_url_index": { | ||
"name": "urls_url_index", | ||
"columns": [ | ||
{ | ||
"expression": "url", | ||
"isExpression": false, | ||
"asc": true, | ||
"nulls": "last" | ||
} | ||
], | ||
"isUnique": false, | ||
"concurrently": false, | ||
"method": "hash", | ||
"with": {} | ||
} | ||
}, | ||
"foreignKeys": {}, | ||
"compositePrimaryKeys": {}, | ||
"uniqueConstraints": {} | ||
}, | ||
"public.visits": { | ||
"name": "visits", | ||
"schema": "", | ||
"columns": { | ||
"id": { | ||
"name": "id", | ||
"type": "serial", | ||
"primaryKey": true, | ||
"notNull": true | ||
}, | ||
"timestamp": { | ||
"name": "timestamp", | ||
"type": "timestamp with time zone", | ||
"primaryKey": false, | ||
"notNull": true, | ||
"default": "now()" | ||
}, | ||
"url_short_base64": { | ||
"name": "url_short_base64", | ||
"type": "text", | ||
"primaryKey": false, | ||
"notNull": true | ||
} | ||
}, | ||
"indexes": { | ||
"visits_url_short_base64_index": { | ||
"name": "visits_url_short_base64_index", | ||
"columns": [ | ||
{ | ||
"expression": "url_short_base64", | ||
"isExpression": false, | ||
"asc": true, | ||
"nulls": "last" | ||
} | ||
], | ||
"isUnique": false, | ||
"concurrently": false, | ||
"method": "hash", | ||
"with": {} | ||
}, | ||
"visits_timestamp_index": { | ||
"name": "visits_timestamp_index", | ||
"columns": [ | ||
{ | ||
"expression": "timestamp", | ||
"isExpression": false, | ||
"asc": true, | ||
"nulls": "last" | ||
} | ||
], | ||
"isUnique": false, | ||
"concurrently": false, | ||
"method": "btree", | ||
"with": {} | ||
} | ||
}, | ||
"foreignKeys": { | ||
"visits_url_short_base64_urls_short_base64_fk": { | ||
"name": "visits_url_short_base64_urls_short_base64_fk", | ||
"tableFrom": "visits", | ||
"tableTo": "urls", | ||
"columnsFrom": [ | ||
"url_short_base64" | ||
], | ||
"columnsTo": [ | ||
"short_base64" | ||
], | ||
"onDelete": "cascade", | ||
"onUpdate": "cascade" | ||
} | ||
}, | ||
"compositePrimaryKeys": {}, | ||
"uniqueConstraints": {} | ||
} | ||
}, | ||
"enums": {}, | ||
"schemas": {}, | ||
"_meta": { | ||
"columns": {}, | ||
"schemas": {}, | ||
"tables": {} | ||
} | ||
} |
Oops, something went wrong.