Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ create index fileindex on file ( fileid, collectionid );
create table actor (
actor_guid bigint not null generated always as identity primary key,
-- The guid for the actor.
actor_name varchar(255) -- The name of the actor.
actor_name varchar(255) unique -- The name of the actor.
);

create index actorindex on actor ( actor_name );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ CREATE INDEX fileindex ON file ( fileid, collectionid );
--*************************************************************************--
CREATE TABLE actor (
actor_guid SERIAL PRIMARY KEY, -- The guid for the actor.
actor_name VARCHAR(255) -- The name of the actor.
actor_name VARCHAR(255) UNIQUE -- The name of the actor.
);

CREATE INDEX actorindex ON actor ( actor_name );
Expand Down