... | ... | @@ -2,10 +2,10 @@ |
|
|
create table table_codebuch (
|
|
|
id int constraint table_codebuch_pk primary key,
|
|
|
Tag int not null,
|
|
|
Walzenlage int not null,
|
|
|
Ringstellung int not null,
|
|
|
Grundstellung int not null,
|
|
|
Steckverbindung 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);
|
... | ... | |