Browse Source

Add auto_prices table to schema

David Ginzberg 7 years ago
parent
commit
fd0a34f6ba
1 changed files with 6 additions and 0 deletions
  1. 6
    0
      src/main/resources/schema-h2.sql

+ 6
- 0
src/main/resources/schema-h2.sql View File

@@ -28,6 +28,12 @@ CREATE TABLE CAR (
28 28
   PRIMARY KEY (ID)
29 29
 );
30 30
 
31
+CREATE TABLE auto_prices (
32
+  id INT PRIMARY KEY AUTO_INCREMENT,
33
+  car_id INT REFERENCES car(id),
34
+  package VARCHAR2(15) NOT NULL,
35
+  price NUMBER(10,2) NOT NULL CHECK(price > 0)
36
+);
31 37
 
32 38
 DROP SEQUENCE hibernate_sequence;
33 39