summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTharre <tharre3@gmail.com>2018-05-03 23:43:27 +0200
committerTharre <tharre3@gmail.com>2018-05-03 23:44:21 +0200
commit7077b817bff797c769191046f0019508ddb20eba (patch)
tree1f14c15c420fd37aea2f44252b501332cc4c5f47 /src
parent1426adba7e44cefbd8e4579b0c5bd03be8a57605 (diff)
downloadsepm-groupproject-7077b817bff797c769191046f0019508ddb20eba.tar.gz
sepm-groupproject-7077b817bff797c769191046f0019508ddb20eba.tar.xz
sepm-groupproject-7077b817bff797c769191046f0019508ddb20eba.zip
Add missing hasNef attr. to VehicleVersion table
Diffstat (limited to 'src')
-rw-r--r--src/main/resources/sql/database.sql1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/main/resources/sql/database.sql b/src/main/resources/sql/database.sql
index 9d1b0e1..bb23c91 100644
--- a/src/main/resources/sql/database.sql
+++ b/src/main/resources/sql/database.sql
@@ -3,6 +3,7 @@ CREATE TABLE IF NOT EXISTS VehicleVersion (
name VARCHAR(100) NOT NULL,
constructionType ENUM('Normal', 'Hochdach', 'Mittelhochdach') NOT NULL,
type ENUM('BKTW', 'KTW-B', 'KTW', 'RTW', 'NEF', 'NAH') NOT NULL,
+ hasNef BOOLEAN NOT NULL,
);
CREATE TABLE IF NOT EXISTS Vehicle (