create table table_codebuch (
id int constraint table_codebuch_pk primary key,
Tag int not null,
Walzenlage char not null,
Ringstellung char not null,
Grundstellung char not null,
Steckverbindung char not null
);
create unique index table_codebuch_Tag_uindex on table_codebuch (Tag);