@authhero/drizzle 0.20.3 → 0.21.0

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,10 @@
1
+ CREATE TABLE `custom_text` (
2
+ `tenant_id` text(191) NOT NULL,
3
+ `prompt` text(64) NOT NULL,
4
+ `language` text(16) NOT NULL,
5
+ `custom_text` text NOT NULL,
6
+ `created_at_ts` integer NOT NULL,
7
+ `updated_at_ts` integer NOT NULL,
8
+ PRIMARY KEY(`tenant_id`, `prompt`, `language`),
9
+ FOREIGN KEY (`tenant_id`) REFERENCES `tenants`(`id`) ON UPDATE no action ON DELETE cascade
10
+ );