changes Geburtsdatum to date_of_birth

This commit is contained in:
2023-10-11 07:10:52 +02:00
parent 1d56372674
commit 5b67db9779
2 changed files with 3 additions and 3 deletions

View File

@@ -2,7 +2,7 @@ CREATE TABLE composer (
id INTEGER NOT NULL PRIMARY KEY,
first_name VARCHAR(255) NOT NULL,
name VARCHAR(255) NOT NULL,
Geburtsdatum DATE NOT NULL,
date_of_birth DATE NOT NULL,
Sterbedatum DATE
);