Skip to content

Commit

Permalink
feat: added updated DDL schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillermo C. Martínez committed Dec 23, 2024
1 parent c05e429 commit f9434d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/database/schema/schema.sql
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ CREATE TABLE public.github_repositories (
dependabot_security_updates_status text DEFAULT 'disabled'::text,
secret_scanning_non_provider_patterns_status text DEFAULT 'disabled'::text,
secret_scanning_validity_checks_status text DEFAULT 'disabled'::text,
github_organization_id integer,
github_organization_id integer NOT NULL,
created_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
updated_at timestamp with time zone DEFAULT CURRENT_TIMESTAMP NOT NULL,
CONSTRAINT github_repositories_dependabot_security_updates_status_check CHECK ((dependabot_security_updates_status = ANY (ARRAY['enabled'::text, 'disabled'::text]))),
Expand Down

0 comments on commit f9434d6

Please sign in to comment.