{ "version": "6", "dialect": "sqlite", "id": "cd3deb34-e4c8-4ae2-aa4e-bc0f7d9517f5", "prevId": "cc596587-5474-42a7-b638-1b7c771fbc5e", "tables": { "workspace": { "name": "workspace", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "slug": { "name": "slug", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "name": { "name": "name", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "stripe_id": { "name": "stripe_id", "type": "text(256)", "primaryKey": false, "notNull": false, "autoincrement": false }, "subscription_id": { "name": "subscription_id", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "plan": { "name": "plan", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "ends_at": { "name": "ends_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "paid_until": { "name": "paid_until", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "limits": { "name": "limits", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "'{}'" }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "updated_at": { "name": "updated_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "dsn": { "name": "dsn", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false } }, "indexes": { "workspace_slug_unique": { "name": "workspace_slug_unique", "columns": [ "slug" ], "isUnique": true }, "workspace_stripe_id_unique": { "name": "workspace_stripe_id_unique", "columns": [ "stripe_id" ], "isUnique": true }, "workspace_id_dsn_unique": { "name": "workspace_id_dsn_unique", "columns": [ "id", "dsn" ], "isUnique": true } }, "foreignKeys": {}, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "account": { "name": "account", "columns": { "user_id": { "name": "user_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "type": { "name": "type", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "provider": { "name": "provider", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "provider_account_id": { "name": "provider_account_id", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "refresh_token": { "name": "refresh_token", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "access_token": { "name": "access_token", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "expires_at": { "name": "expires_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "token_type": { "name": "token_type", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "scope": { "name": "scope", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "id_token": { "name": "id_token", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "session_state": { "name": "session_state", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false } }, "indexes": {}, "foreignKeys": { "account_user_id_user_id_fk": { "name": "account_user_id_user_id_fk", "tableFrom": "account", "tableTo": "user", "columnsFrom": [ "user_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": { "account_provider_provider_account_id_pk": { "columns": [ "provider", "provider_account_id" ], "name": "account_provider_provider_account_id_pk" } }, "uniqueConstraints": {}, "checkConstraints": {} }, "session": { "name": "session", "columns": { "session_token": { "name": "session_token", "type": "text", "primaryKey": true, "notNull": true, "autoincrement": false }, "user_id": { "name": "user_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "expires": { "name": "expires", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false } }, "indexes": {}, "foreignKeys": { "session_user_id_user_id_fk": { "name": "session_user_id_user_id_fk", "tableFrom": "session", "tableTo": "user", "columnsFrom": [ "user_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "user": { "name": "user", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "tenant_id": { "name": "tenant_id", "type": "text(256)", "primaryKey": false, "notNull": false, "autoincrement": false }, "first_name": { "name": "first_name", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "''" }, "last_name": { "name": "last_name", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "''" }, "photo_url": { "name": "photo_url", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "''" }, "name": { "name": "name", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "email": { "name": "email", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "''" }, "emailVerified": { "name": "emailVerified", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "updated_at": { "name": "updated_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": { "user_tenant_id_unique": { "name": "user_tenant_id_unique", "columns": [ "tenant_id" ], "isUnique": true } }, "foreignKeys": {}, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "users_to_workspaces": { "name": "users_to_workspaces", "columns": { "user_id": { "name": "user_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "workspace_id": { "name": "workspace_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "role": { "name": "role", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "'member'" }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": {}, "foreignKeys": { "users_to_workspaces_user_id_user_id_fk": { "name": "users_to_workspaces_user_id_user_id_fk", "tableFrom": "users_to_workspaces", "tableTo": "user", "columnsFrom": [ "user_id" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" }, "users_to_workspaces_workspace_id_workspace_id_fk": { "name": "users_to_workspaces_workspace_id_workspace_id_fk", "tableFrom": "users_to_workspaces", "tableTo": "workspace", "columnsFrom": [ "workspace_id" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" } }, "compositePrimaryKeys": { "users_to_workspaces_user_id_workspace_id_pk": { "columns": [ "user_id", "workspace_id" ], "name": "users_to_workspaces_user_id_workspace_id_pk" } }, "uniqueConstraints": {}, "checkConstraints": {} }, "verification_token": { "name": "verification_token", "columns": { "identifier": { "name": "identifier", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "token": { "name": "token", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "expires": { "name": "expires", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false } }, "indexes": {}, "foreignKeys": {}, "compositePrimaryKeys": { "verification_token_identifier_token_pk": { "columns": [ "identifier", "token" ], "name": "verification_token_identifier_token_pk" } }, "uniqueConstraints": {}, "checkConstraints": {} }, "status_report_to_monitors": { "name": "status_report_to_monitors", "columns": { "monitor_id": { "name": "monitor_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "status_report_id": { "name": "status_report_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": {}, "foreignKeys": { "status_report_to_monitors_monitor_id_monitor_id_fk": { "name": "status_report_to_monitors_monitor_id_monitor_id_fk", "tableFrom": "status_report_to_monitors", "tableTo": "monitor", "columnsFrom": [ "monitor_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" }, "status_report_to_monitors_status_report_id_status_report_id_fk": { "name": "status_report_to_monitors_status_report_id_status_report_id_fk", "tableFrom": "status_report_to_monitors", "tableTo": "status_report", "columnsFrom": [ "status_report_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": { "status_report_to_monitors_monitor_id_status_report_id_pk": { "columns": [ "monitor_id", "status_report_id" ], "name": "status_report_to_monitors_monitor_id_status_report_id_pk" } }, "uniqueConstraints": {}, "checkConstraints": {} }, "status_report": { "name": "status_report", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "status": { "name": "status", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "title": { "name": "title", "type": "text(256)", "primaryKey": false, "notNull": true, "autoincrement": false }, "workspace_id": { "name": "workspace_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "page_id": { "name": "page_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "updated_at": { "name": "updated_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": {}, "foreignKeys": { "status_report_workspace_id_workspace_id_fk": { "name": "status_report_workspace_id_workspace_id_fk", "tableFrom": "status_report", "tableTo": "workspace", "columnsFrom": [ "workspace_id" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" }, "status_report_page_id_page_id_fk": { "name": "status_report_page_id_page_id_fk", "tableFrom": "status_report", "tableTo": "page", "columnsFrom": [ "page_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "status_report_update": { "name": "status_report_update", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "status": { "name": "status", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "date": { "name": "date", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "message": { "name": "message", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "status_report_id": { "name": "status_report_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "updated_at": { "name": "updated_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": {}, "foreignKeys": { "status_report_update_status_report_id_status_report_id_fk": { "name": "status_report_update_status_report_id_status_report_id_fk", "tableFrom": "status_report_update", "tableTo": "status_report", "columnsFrom": [ "status_report_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "integration": { "name": "integration", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "name": { "name": "name", "type": "text(256)", "primaryKey": false, "notNull": true, "autoincrement": false }, "workspace_id": { "name": "workspace_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "credential": { "name": "credential", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "external_id": { "name": "external_id", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "updated_at": { "name": "updated_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "data": { "name": "data", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false } }, "indexes": {}, "foreignKeys": { "integration_workspace_id_workspace_id_fk": { "name": "integration_workspace_id_workspace_id_fk", "tableFrom": "integration", "tableTo": "workspace", "columnsFrom": [ "workspace_id" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "page": { "name": "page", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "workspace_id": { "name": "workspace_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "title": { "name": "title", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "description": { "name": "description", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "icon": { "name": "icon", "type": "text(256)", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "''" }, "slug": { "name": "slug", "type": "text(256)", "primaryKey": false, "notNull": true, "autoincrement": false }, "custom_domain": { "name": "custom_domain", "type": "text(256)", "primaryKey": false, "notNull": true, "autoincrement": false }, "published": { "name": "published", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": false }, "force_theme": { "name": "force_theme", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "'system'" }, "password": { "name": "password", "type": "text(256)", "primaryKey": false, "notNull": false, "autoincrement": false }, "password_protected": { "name": "password_protected", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": false }, "access_type": { "name": "access_type", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "'public'" }, "auth_email_domains": { "name": "auth_email_domains", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "homepage_url": { "name": "homepage_url", "type": "text(256)", "primaryKey": false, "notNull": false, "autoincrement": false }, "contact_url": { "name": "contact_url", "type": "text(256)", "primaryKey": false, "notNull": false, "autoincrement": false }, "legacy_page": { "name": "legacy_page", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false, "default": true }, "configuration": { "name": "configuration", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "show_monitor_values": { "name": "show_monitor_values", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": true }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "updated_at": { "name": "updated_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": { "page_slug_unique": { "name": "page_slug_unique", "columns": [ "slug" ], "isUnique": true } }, "foreignKeys": { "page_workspace_id_workspace_id_fk": { "name": "page_workspace_id_workspace_id_fk", "tableFrom": "page", "tableTo": "workspace", "columnsFrom": [ "workspace_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "monitor": { "name": "monitor", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "job_type": { "name": "job_type", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "'http'" }, "periodicity": { "name": "periodicity", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "'other'" }, "status": { "name": "status", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "'active'" }, "active": { "name": "active", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": false }, "regions": { "name": "regions", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "''" }, "url": { "name": "url", "type": "text(2048)", "primaryKey": false, "notNull": true, "autoincrement": false }, "name": { "name": "name", "type": "text(256)", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "''" }, "external_name": { "name": "external_name", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "description": { "name": "description", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "''" }, "headers": { "name": "headers", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "''" }, "body": { "name": "body", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "''" }, "method": { "name": "method", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "'GET'" }, "workspace_id": { "name": "workspace_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "timeout": { "name": "timeout", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false, "default": 45000 }, "degraded_after": { "name": "degraded_after", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "assertions": { "name": "assertions", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "otel_endpoint": { "name": "otel_endpoint", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "otel_headers": { "name": "otel_headers", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "public": { "name": "public", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": false }, "retry": { "name": "retry", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": 3 }, "follow_redirects": { "name": "follow_redirects", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": true }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "updated_at": { "name": "updated_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "deleted_at": { "name": "deleted_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false } }, "indexes": {}, "foreignKeys": { "monitor_workspace_id_workspace_id_fk": { "name": "monitor_workspace_id_workspace_id_fk", "tableFrom": "monitor", "tableTo": "workspace", "columnsFrom": [ "workspace_id" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "monitors_to_pages": { "name": "monitors_to_pages", "columns": { "monitor_id": { "name": "monitor_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "page_id": { "name": "page_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "order": { "name": "order", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": 0 }, "monitor_group_id": { "name": "monitor_group_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "group_order": { "name": "group_order", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": 0 } }, "indexes": {}, "foreignKeys": { "monitors_to_pages_monitor_id_monitor_id_fk": { "name": "monitors_to_pages_monitor_id_monitor_id_fk", "tableFrom": "monitors_to_pages", "tableTo": "monitor", "columnsFrom": [ "monitor_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" }, "monitors_to_pages_page_id_page_id_fk": { "name": "monitors_to_pages_page_id_page_id_fk", "tableFrom": "monitors_to_pages", "tableTo": "page", "columnsFrom": [ "page_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" }, "monitors_to_pages_monitor_group_id_monitor_group_id_fk": { "name": "monitors_to_pages_monitor_group_id_monitor_group_id_fk", "tableFrom": "monitors_to_pages", "tableTo": "monitor_group", "columnsFrom": [ "monitor_group_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": { "monitors_to_pages_monitor_id_page_id_pk": { "columns": [ "monitor_id", "page_id" ], "name": "monitors_to_pages_monitor_id_page_id_pk" } }, "uniqueConstraints": {}, "checkConstraints": {} }, "page_subscriber": { "name": "page_subscriber", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "email": { "name": "email", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "page_id": { "name": "page_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "token": { "name": "token", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "accepted_at": { "name": "accepted_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "expires_at": { "name": "expires_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "unsubscribed_at": { "name": "unsubscribed_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "updated_at": { "name": "updated_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": {}, "foreignKeys": { "page_subscriber_page_id_page_id_fk": { "name": "page_subscriber_page_id_page_id_fk", "tableFrom": "page_subscriber", "tableTo": "page", "columnsFrom": [ "page_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "notification": { "name": "notification", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "name": { "name": "name", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "provider": { "name": "provider", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "data": { "name": "data", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "'{}'" }, "workspace_id": { "name": "workspace_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "updated_at": { "name": "updated_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": {}, "foreignKeys": { "notification_workspace_id_workspace_id_fk": { "name": "notification_workspace_id_workspace_id_fk", "tableFrom": "notification", "tableTo": "workspace", "columnsFrom": [ "workspace_id" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "notification_trigger": { "name": "notification_trigger", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "monitor_id": { "name": "monitor_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "notification_id": { "name": "notification_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "cron_timestamp": { "name": "cron_timestamp", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false } }, "indexes": { "notification_id_monitor_id_crontimestampe": { "name": "notification_id_monitor_id_crontimestampe", "columns": [ "notification_id", "monitor_id", "cron_timestamp" ], "isUnique": true } }, "foreignKeys": { "notification_trigger_monitor_id_monitor_id_fk": { "name": "notification_trigger_monitor_id_monitor_id_fk", "tableFrom": "notification_trigger", "tableTo": "monitor", "columnsFrom": [ "monitor_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" }, "notification_trigger_notification_id_notification_id_fk": { "name": "notification_trigger_notification_id_notification_id_fk", "tableFrom": "notification_trigger", "tableTo": "notification", "columnsFrom": [ "notification_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "notifications_to_monitors": { "name": "notifications_to_monitors", "columns": { "monitor_id": { "name": "monitor_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "notification_id": { "name": "notification_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": {}, "foreignKeys": { "notifications_to_monitors_monitor_id_monitor_id_fk": { "name": "notifications_to_monitors_monitor_id_monitor_id_fk", "tableFrom": "notifications_to_monitors", "tableTo": "monitor", "columnsFrom": [ "monitor_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" }, "notifications_to_monitors_notification_id_notification_id_fk": { "name": "notifications_to_monitors_notification_id_notification_id_fk", "tableFrom": "notifications_to_monitors", "tableTo": "notification", "columnsFrom": [ "notification_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": { "notifications_to_monitors_monitor_id_notification_id_pk": { "columns": [ "monitor_id", "notification_id" ], "name": "notifications_to_monitors_monitor_id_notification_id_pk" } }, "uniqueConstraints": {}, "checkConstraints": {} }, "monitor_status": { "name": "monitor_status", "columns": { "monitor_id": { "name": "monitor_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "region": { "name": "region", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "''" }, "status": { "name": "status", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "'active'" }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "updated_at": { "name": "updated_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": { "monitor_status_idx": { "name": "monitor_status_idx", "columns": [ "monitor_id", "region" ], "isUnique": false } }, "foreignKeys": { "monitor_status_monitor_id_monitor_id_fk": { "name": "monitor_status_monitor_id_monitor_id_fk", "tableFrom": "monitor_status", "tableTo": "monitor", "columnsFrom": [ "monitor_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": { "monitor_status_monitor_id_region_pk": { "columns": [ "monitor_id", "region" ], "name": "monitor_status_monitor_id_region_pk" } }, "uniqueConstraints": {}, "checkConstraints": {} }, "invitation": { "name": "invitation", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "email": { "name": "email", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "role": { "name": "role", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "'member'" }, "workspace_id": { "name": "workspace_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "token": { "name": "token", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "expires_at": { "name": "expires_at", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "accepted_at": { "name": "accepted_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false } }, "indexes": {}, "foreignKeys": {}, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "incident": { "name": "incident", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "title": { "name": "title", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "''" }, "summary": { "name": "summary", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "''" }, "status": { "name": "status", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "'triage'" }, "monitor_id": { "name": "monitor_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "workspace_id": { "name": "workspace_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "started_at": { "name": "started_at", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "acknowledged_at": { "name": "acknowledged_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "acknowledged_by": { "name": "acknowledged_by", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "resolved_at": { "name": "resolved_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "resolved_by": { "name": "resolved_by", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "incident_screenshot_url": { "name": "incident_screenshot_url", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "recovery_screenshot_url": { "name": "recovery_screenshot_url", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "auto_resolved": { "name": "auto_resolved", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "updated_at": { "name": "updated_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": { "incident_monitor_id_started_at_unique": { "name": "incident_monitor_id_started_at_unique", "columns": [ "monitor_id", "started_at" ], "isUnique": true } }, "foreignKeys": { "incident_monitor_id_monitor_id_fk": { "name": "incident_monitor_id_monitor_id_fk", "tableFrom": "incident", "tableTo": "monitor", "columnsFrom": [ "monitor_id" ], "columnsTo": [ "id" ], "onDelete": "set default", "onUpdate": "no action" }, "incident_workspace_id_workspace_id_fk": { "name": "incident_workspace_id_workspace_id_fk", "tableFrom": "incident", "tableTo": "workspace", "columnsFrom": [ "workspace_id" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" }, "incident_acknowledged_by_user_id_fk": { "name": "incident_acknowledged_by_user_id_fk", "tableFrom": "incident", "tableTo": "user", "columnsFrom": [ "acknowledged_by" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" }, "incident_resolved_by_user_id_fk": { "name": "incident_resolved_by_user_id_fk", "tableFrom": "incident", "tableTo": "user", "columnsFrom": [ "resolved_by" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "monitor_tag": { "name": "monitor_tag", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "workspace_id": { "name": "workspace_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "name": { "name": "name", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "color": { "name": "color", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "updated_at": { "name": "updated_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": {}, "foreignKeys": { "monitor_tag_workspace_id_workspace_id_fk": { "name": "monitor_tag_workspace_id_workspace_id_fk", "tableFrom": "monitor_tag", "tableTo": "workspace", "columnsFrom": [ "workspace_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "monitor_tag_to_monitor": { "name": "monitor_tag_to_monitor", "columns": { "monitor_id": { "name": "monitor_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "monitor_tag_id": { "name": "monitor_tag_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": {}, "foreignKeys": { "monitor_tag_to_monitor_monitor_id_monitor_id_fk": { "name": "monitor_tag_to_monitor_monitor_id_monitor_id_fk", "tableFrom": "monitor_tag_to_monitor", "tableTo": "monitor", "columnsFrom": [ "monitor_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" }, "monitor_tag_to_monitor_monitor_tag_id_monitor_tag_id_fk": { "name": "monitor_tag_to_monitor_monitor_tag_id_monitor_tag_id_fk", "tableFrom": "monitor_tag_to_monitor", "tableTo": "monitor_tag", "columnsFrom": [ "monitor_tag_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": { "monitor_tag_to_monitor_monitor_id_monitor_tag_id_pk": { "columns": [ "monitor_id", "monitor_tag_id" ], "name": "monitor_tag_to_monitor_monitor_id_monitor_tag_id_pk" } }, "uniqueConstraints": {}, "checkConstraints": {} }, "application": { "name": "application", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "name": { "name": "name", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "dsn": { "name": "dsn", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "workspace_id": { "name": "workspace_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "updated_at": { "name": "updated_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": { "application_dsn_unique": { "name": "application_dsn_unique", "columns": [ "dsn" ], "isUnique": true } }, "foreignKeys": { "application_workspace_id_workspace_id_fk": { "name": "application_workspace_id_workspace_id_fk", "tableFrom": "application", "tableTo": "workspace", "columnsFrom": [ "workspace_id" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "maintenance": { "name": "maintenance", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "title": { "name": "title", "type": "text(256)", "primaryKey": false, "notNull": true, "autoincrement": false }, "message": { "name": "message", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "from": { "name": "from", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "to": { "name": "to", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "workspace_id": { "name": "workspace_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "page_id": { "name": "page_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "updated_at": { "name": "updated_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": {}, "foreignKeys": { "maintenance_workspace_id_workspace_id_fk": { "name": "maintenance_workspace_id_workspace_id_fk", "tableFrom": "maintenance", "tableTo": "workspace", "columnsFrom": [ "workspace_id" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" }, "maintenance_page_id_page_id_fk": { "name": "maintenance_page_id_page_id_fk", "tableFrom": "maintenance", "tableTo": "page", "columnsFrom": [ "page_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "maintenance_to_monitor": { "name": "maintenance_to_monitor", "columns": { "maintenance_id": { "name": "maintenance_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "monitor_id": { "name": "monitor_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": {}, "foreignKeys": { "maintenance_to_monitor_maintenance_id_maintenance_id_fk": { "name": "maintenance_to_monitor_maintenance_id_maintenance_id_fk", "tableFrom": "maintenance_to_monitor", "tableTo": "maintenance", "columnsFrom": [ "maintenance_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" }, "maintenance_to_monitor_monitor_id_monitor_id_fk": { "name": "maintenance_to_monitor_monitor_id_monitor_id_fk", "tableFrom": "maintenance_to_monitor", "tableTo": "monitor", "columnsFrom": [ "monitor_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": { "maintenance_to_monitor_maintenance_id_monitor_id_pk": { "columns": [ "maintenance_id", "monitor_id" ], "name": "maintenance_to_monitor_maintenance_id_monitor_id_pk" } }, "uniqueConstraints": {}, "checkConstraints": {} }, "check": { "name": "check", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": true }, "regions": { "name": "regions", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false, "default": "''" }, "url": { "name": "url", "type": "text(4096)", "primaryKey": false, "notNull": true, "autoincrement": false }, "headers": { "name": "headers", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "''" }, "body": { "name": "body", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "''" }, "method": { "name": "method", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "'GET'" }, "count_requests": { "name": "count_requests", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": 1 }, "workspace_id": { "name": "workspace_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": {}, "foreignKeys": { "check_workspace_id_workspace_id_fk": { "name": "check_workspace_id_workspace_id_fk", "tableFrom": "check", "tableTo": "workspace", "columnsFrom": [ "workspace_id" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "monitor_run": { "name": "monitor_run", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "workspace_id": { "name": "workspace_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "monitor_id": { "name": "monitor_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "runned_at": { "name": "runned_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": {}, "foreignKeys": { "monitor_run_workspace_id_workspace_id_fk": { "name": "monitor_run_workspace_id_workspace_id_fk", "tableFrom": "monitor_run", "tableTo": "workspace", "columnsFrom": [ "workspace_id" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" }, "monitor_run_monitor_id_monitor_id_fk": { "name": "monitor_run_monitor_id_monitor_id_fk", "tableFrom": "monitor_run", "tableTo": "monitor", "columnsFrom": [ "monitor_id" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "private_location": { "name": "private_location", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "name": { "name": "name", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "token": { "name": "token", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "last_seen_at": { "name": "last_seen_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "workspace_id": { "name": "workspace_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "updated_at": { "name": "updated_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": {}, "foreignKeys": { "private_location_workspace_id_workspace_id_fk": { "name": "private_location_workspace_id_workspace_id_fk", "tableFrom": "private_location", "tableTo": "workspace", "columnsFrom": [ "workspace_id" ], "columnsTo": [ "id" ], "onDelete": "no action", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "private_location_to_monitor": { "name": "private_location_to_monitor", "columns": { "private_location_id": { "name": "private_location_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "monitor_id": { "name": "monitor_id", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "deleted_at": { "name": "deleted_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false } }, "indexes": {}, "foreignKeys": { "private_location_to_monitor_private_location_id_private_location_id_fk": { "name": "private_location_to_monitor_private_location_id_private_location_id_fk", "tableFrom": "private_location_to_monitor", "tableTo": "private_location", "columnsFrom": [ "private_location_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" }, "private_location_to_monitor_monitor_id_monitor_id_fk": { "name": "private_location_to_monitor_monitor_id_monitor_id_fk", "tableFrom": "private_location_to_monitor", "tableTo": "monitor", "columnsFrom": [ "monitor_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "monitor_group": { "name": "monitor_group", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "workspace_id": { "name": "workspace_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "page_id": { "name": "page_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "name": { "name": "name", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "updated_at": { "name": "updated_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": {}, "foreignKeys": { "monitor_group_workspace_id_workspace_id_fk": { "name": "monitor_group_workspace_id_workspace_id_fk", "tableFrom": "monitor_group", "tableTo": "workspace", "columnsFrom": [ "workspace_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" }, "monitor_group_page_id_page_id_fk": { "name": "monitor_group_page_id_page_id_fk", "tableFrom": "monitor_group", "tableTo": "page", "columnsFrom": [ "page_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "viewer": { "name": "viewer", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": false }, "name": { "name": "name", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "email": { "name": "email", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "emailVerified": { "name": "emailVerified", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "image": { "name": "image", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "updated_at": { "name": "updated_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" } }, "indexes": { "viewer_email_unique": { "name": "viewer_email_unique", "columns": [ "email" ], "isUnique": true } }, "foreignKeys": {}, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "viewer_accounts": { "name": "viewer_accounts", "columns": { "user_id": { "name": "user_id", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "type": { "name": "type", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "provider": { "name": "provider", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "providerAccountId": { "name": "providerAccountId", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "refresh_token": { "name": "refresh_token", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "access_token": { "name": "access_token", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "expires_at": { "name": "expires_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "token_type": { "name": "token_type", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "scope": { "name": "scope", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "id_token": { "name": "id_token", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "session_state": { "name": "session_state", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false } }, "indexes": {}, "foreignKeys": { "viewer_accounts_user_id_viewer_id_fk": { "name": "viewer_accounts_user_id_viewer_id_fk", "tableFrom": "viewer_accounts", "tableTo": "viewer", "columnsFrom": [ "user_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": { "viewer_accounts_provider_providerAccountId_pk": { "columns": [ "provider", "providerAccountId" ], "name": "viewer_accounts_provider_providerAccountId_pk" } }, "uniqueConstraints": {}, "checkConstraints": {} }, "viewer_session": { "name": "viewer_session", "columns": { "session_token": { "name": "session_token", "type": "text", "primaryKey": true, "notNull": true, "autoincrement": false }, "user_id": { "name": "user_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "expires": { "name": "expires", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false } }, "indexes": {}, "foreignKeys": { "viewer_session_user_id_viewer_id_fk": { "name": "viewer_session_user_id_viewer_id_fk", "tableFrom": "viewer_session", "tableTo": "viewer", "columnsFrom": [ "user_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} }, "api_key": { "name": "api_key", "columns": { "id": { "name": "id", "type": "integer", "primaryKey": true, "notNull": true, "autoincrement": true }, "name": { "name": "name", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "description": { "name": "description", "type": "text", "primaryKey": false, "notNull": false, "autoincrement": false }, "prefix": { "name": "prefix", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "hashed_token": { "name": "hashed_token", "type": "text", "primaryKey": false, "notNull": true, "autoincrement": false }, "workspace_id": { "name": "workspace_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "created_by_id": { "name": "created_by_id", "type": "integer", "primaryKey": false, "notNull": true, "autoincrement": false }, "created_at": { "name": "created_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false, "default": "(strftime('%s', 'now'))" }, "expires_at": { "name": "expires_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false }, "last_used_at": { "name": "last_used_at", "type": "integer", "primaryKey": false, "notNull": false, "autoincrement": false } }, "indexes": { "api_key_prefix_unique": { "name": "api_key_prefix_unique", "columns": [ "prefix" ], "isUnique": true }, "api_key_hashed_token_unique": { "name": "api_key_hashed_token_unique", "columns": [ "hashed_token" ], "isUnique": true }, "api_key_prefix_idx": { "name": "api_key_prefix_idx", "columns": [ "prefix" ], "isUnique": false } }, "foreignKeys": { "api_key_workspace_id_workspace_id_fk": { "name": "api_key_workspace_id_workspace_id_fk", "tableFrom": "api_key", "tableTo": "workspace", "columnsFrom": [ "workspace_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" }, "api_key_created_by_id_user_id_fk": { "name": "api_key_created_by_id_user_id_fk", "tableFrom": "api_key", "tableTo": "user", "columnsFrom": [ "created_by_id" ], "columnsTo": [ "id" ], "onDelete": "cascade", "onUpdate": "no action" } }, "compositePrimaryKeys": {}, "uniqueConstraints": {}, "checkConstraints": {} } }, "views": {}, "enums": {}, "_meta": { "schemas": {}, "tables": {}, "columns": {} }, "internal": { "indexes": {} } }