Openstatus
www.openstatus.dev
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);