fix master branch
This commit is contained in:
parent
85ff1cdf51
commit
caa4b2a90c
8 changed files with 11 additions and 76 deletions
|
|
@ -1,9 +1,7 @@
|
|||
|
||||
server.port 9001
|
||||
server.port=9001
|
||||
|
||||
#Configurations H2
|
||||
spring.jpa.show-sql=true
|
||||
spring.h2.console.enabled=true
|
||||
|
||||
#défini l'encodage pour data.sql
|
||||
spring.datasource.sql-script-encoding=UTF-8
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
CREATE TABLE product
|
||||
(
|
||||
id INT PRIMARY KEY,
|
||||
titre VARCHAR(255) NOT NULL,
|
||||
description VARCHAR(255) NOT NULL,
|
||||
image VARCHAR(255) NOT NULL,
|
||||
prix INT NOT NULL
|
||||
);
|
||||
Loading…
Add table
Add a link
Reference in a new issue