feat: initiated description of db schema based on facts json.

This commit is contained in:
Leonard Excoffier
2024-08-26 22:08:28 -04:00
parent 20a2866ecd
commit c02fea1417

4
db_schema.sql Normal file
View File

@@ -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
);