@zodic/shared 0.0.238 → 0.0.240

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,47 @@
1
+ CREATE TABLE `aspect_reports` (
2
+ `id` text PRIMARY KEY NOT NULL,
3
+ `aspecting_planet` text NOT NULL,
4
+ `aspected_planet` text NOT NULL,
5
+ `aspect` text NOT NULL,
6
+ `en_description` text,
7
+ `pt_description` text,
8
+ `en_report` text,
9
+ `pt_report` text,
10
+ `created_at` integer DEFAULT CURRENT_TIMESTAMP,
11
+ `updated_at` integer DEFAULT CURRENT_TIMESTAMP
12
+ );
13
+ --> statement-breakpoint
14
+ CREATE INDEX `aspect_reports_aspecting_idx` ON `aspect_reports` (`aspecting_planet`);--> statement-breakpoint
15
+ CREATE INDEX `aspect_reports_aspected_idx` ON `aspect_reports` (`aspected_planet`);--> statement-breakpoint
16
+ CREATE INDEX `aspect_reports_aspect_idx` ON `aspect_reports` (`aspect`);--> statement-breakpoint
17
+ CREATE INDEX `aspect_reports_combined_idx` ON `aspect_reports` (`aspecting_planet`,`aspected_planet`,`aspect`);--> statement-breakpoint
18
+ CREATE TABLE `astro_reports` (
19
+ `id` text PRIMARY KEY NOT NULL,
20
+ `type` text NOT NULL,
21
+ `name` text NOT NULL,
22
+ `sign` text,
23
+ `house` integer,
24
+ `en_description` text,
25
+ `pt_description` text,
26
+ `en_report` text,
27
+ `pt_report` text,
28
+ `created_at` integer DEFAULT CURRENT_TIMESTAMP,
29
+ `updated_at` integer DEFAULT CURRENT_TIMESTAMP
30
+ );
31
+ --> statement-breakpoint
32
+ CREATE INDEX `astro_reports_type_idx` ON `astro_reports` (`type`);--> statement-breakpoint
33
+ CREATE INDEX `astro_reports_name_sign_idx` ON `astro_reports` (`name`,`sign`);--> statement-breakpoint
34
+ CREATE INDEX `astro_reports_name_house_idx` ON `astro_reports` (`name`,`house`);--> statement-breakpoint
35
+ CREATE TABLE `house_reports` (
36
+ `id` text PRIMARY KEY NOT NULL,
37
+ `sign` text NOT NULL,
38
+ `house` integer NOT NULL,
39
+ `en_description` text,
40
+ `pt_description` text,
41
+ `en_report` text,
42
+ `pt_report` text,
43
+ `created_at` integer DEFAULT CURRENT_TIMESTAMP,
44
+ `updated_at` integer DEFAULT CURRENT_TIMESTAMP
45
+ );
46
+ --> statement-breakpoint
47
+ CREATE INDEX `house_reports_sign_house_idx` ON `house_reports` (`sign`,`house`);