Skip to content

Commit

Permalink
update db
Browse files Browse the repository at this point in the history
  • Loading branch information
n1nj4t4nuk1 committed Dec 13, 2024
1 parent 4348242 commit e1af775
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion apps/cti/migrations/reset.sql
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,11 @@ DROP TABLE IF EXISTS cti.cves;
CREATE TABLE IF NOT EXISTS cti.cves (
id text PRIMARY KEY,
state text NOT NULL,
date_published text NOT null,
description text NOT NULL,
assigner_id text NOT NULL,
assigner_name text NOT NULL,
date_published text NOT null,
date_updated text NOT null,

_created_at timestamp with time zone DEFAULT now()
);

0 comments on commit e1af775

Please sign in to comment.