Files
stockdb/db_schema.sql
2024-08-26 22:08:28 -04:00

4 lines
180 B
SQL

CREATE TABLE entities (
cik INT PRIMARY KEY, -- CIK is now the primary key, ensuring uniqueness
entityName VARCHAR(255) NOT NULL -- Name of the company
);