From c02fea1417331c318ecd81c82f33f455c57da84d Mon Sep 17 00:00:00 2001 From: Leonard Excoffier <48970393+excoffierleonard@users.noreply.github.com> Date: Mon, 26 Aug 2024 22:08:28 -0400 Subject: [PATCH] feat: initiated description of db schema based on facts json. --- db_schema.sql | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 db_schema.sql diff --git a/db_schema.sql b/db_schema.sql new file mode 100644 index 0000000..b6768b5 --- /dev/null +++ b/db_schema.sql @@ -0,0 +1,4 @@ +CREATE TABLE entities ( + cik INT PRIMARY KEY, -- CIK is now the primary key, ensuring uniqueness + entityName VARCHAR(255) NOT NULL -- Name of the company +); \ No newline at end of file