From 29801d31075eed3b55c7f9656f0287fb20766735 Mon Sep 17 00:00:00 2001 From: RealTehreal Date: Tue, 9 Dec 2025 09:20:45 +0100 Subject: [PATCH] Update imdb-create-tables.sql Typo in table name "Alias_attributes" --- imdb-create-tables.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/imdb-create-tables.sql b/imdb-create-tables.sql index 6e1d091..9664e7c 100644 --- a/imdb-create-tables.sql +++ b/imdb-create-tables.sql @@ -87,7 +87,7 @@ CREATE TABLE Alias_types ( type VARCHAR(255) NOT NULL-- Only stored if not null ); -CREATE TABLE ALias_attributes ( +CREATE TABLE Alias_attributes ( title_id VARCHAR(255) NOT NULL, -- not null bc PK ordering INTEGER NOT NULL, -- not null bc PK attribute VARCHAR(255) NOT NULL -- only stored if not null