create table table_codebuch (
id INTEGER constraint table_codebuch_pk primary key autoincrement,
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);