@vrplatform/kysely 1.3.45-144 → 1.3.45-157

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,19 @@
1
+ import type { Kysely } from 'kysely';
2
+ import { sql } from 'kysely';
3
+
4
+ export async function up(db: Kysely<unknown>): Promise<void> {
5
+ await sql`
6
+ create index if not exists reservation_issue_seed_bucket_idx
7
+ on public.reservation (
8
+ (get_byte(uuid_send(id), 15) % 60),
9
+ id
10
+ )
11
+ include (tenant_id)
12
+ `.execute(db);
13
+ }
14
+
15
+ export async function down(db: Kysely<unknown>): Promise<void> {
16
+ await sql`
17
+ drop index if exists public.reservation_issue_seed_bucket_idx
18
+ `.execute(db);
19
+ }
@@ -0,0 +1,29 @@
1
+ import type { Kysely } from 'kysely';
2
+ import { sql } from 'kysely';
3
+
4
+ export async function up(db: Kysely<unknown>): Promise<void> {
5
+ await sql`
6
+ drop index if exists public.payment_line_recent_classification_idx
7
+ `.execute(db);
8
+ await sql`
9
+ drop index if exists
10
+ accounting.transaction_line_recent_classification_idx
11
+ `.execute(db);
12
+ }
13
+
14
+ export async function down(db: Kysely<unknown>): Promise<void> {
15
+ await sql`
16
+ create index if not exists payment_line_recent_classification_idx
17
+ on public.payment_line (updated_at, type2)
18
+ include (payment_id, reservation_id)
19
+ where type2 is not null and type2 != 'deviation'
20
+ `.execute(db);
21
+ await sql`
22
+ create index if not exists transaction_line_recent_classification_idx
23
+ on accounting.transaction_line (
24
+ updated_at,
25
+ match_line_type_classification
26
+ )
27
+ where match_line_type_classification is not null
28
+ `.execute(db);
29
+ }
package/package.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "publishConfig": {
4
4
  "access": "public"
5
5
  },
6
- "version": "1.3.45-144",
6
+ "version": "1.3.45-157",
7
7
  "description": "",
8
8
  "main": "build/main/index.js",
9
9
  "module": "build/module/index.js",