Openstatus www.openstatus.dev
at 4c0f4c00a38753a5d0dfd7e7b7b7706dec6f1503 11 lines 403 B view raw
1CREATE TABLE `integration` ( 2 `id` integer PRIMARY KEY NOT NULL, 3 `name` text(256) NOT NULL, 4 `workspace_id` integer, 5 `credential` text, 6 `external_id` text NOT NULL, 7 `created_at` integer DEFAULT (strftime('%s', 'now')), 8 `updated_at` integer DEFAULT (strftime('%s', 'now')), 9 `data` text NOT NULL, 10 FOREIGN KEY (`workspace_id`) REFERENCES `workspace`(`id`) ON UPDATE no action ON DELETE no action 11);