4 lines
180 B
SQL
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
|
|
); |