|
|
|
```
|
|
|
|
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
|
|
|
|
);
|
|
|
|
|
|
|
|
create unique index table_codebuch_Tag_uindex on table_codebuch (Tag);
|
|
|
|
``` |
|
|
\ No newline at end of file |