Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
E
Enigma
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
AlfaTrainingKurse
Java
Enigma
Wiki
Klasse_Datenbank_SQLite
Changes
Page history
New page
Templates
Clone repository
Update Klasse_Datenbank_SQLite
authored
5 years ago
by
Dennis Eisold
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Klasse_Datenbank_SQLite.md
+4
-4
4 additions, 4 deletions
Klasse_Datenbank_SQLite.md
with
4 additions
and
4 deletions
Klasse_Datenbank_SQLite.md
View page @
d585309b
...
@@ -2,10 +2,10 @@
...
@@ -2,10 +2,10 @@
create table table_codebuch (
create table table_codebuch (
id int constraint table_codebuch_pk primary key,
id int constraint table_codebuch_pk primary key,
Tag int not null,
Tag int not null,
Walzenlage
int
not null,
Walzenlage
char
not null,
Ringstellung
int
not null,
Ringstellung
char
not null,
Grundstellung
int
not null,
Grundstellung
char
not null,
Steckverbindung
int
not null
Steckverbindung
char
not null
);
);
create unique index table_codebuch_Tag_uindex on table_codebuch (Tag);
create unique index table_codebuch_Tag_uindex on table_codebuch (Tag);
...
...
This diff is collapsed.
Click to expand it.