We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b10502a commit d3b7df0Copy full SHA for d3b7df0
srv/src/main/resources/application.yaml
@@ -126,6 +126,7 @@ cds:
126
spring:
127
config.activate.on-profile: default
128
sql.init.platform: h2
129
+ sql.init.schema-locations: classpath:schema-h2.sql,classpath:indices-h2.sql
130
cds:
131
data-source:
132
auto-config.enabled: false
srv/src/main/resources/indices-h2.sql
@@ -0,0 +1 @@
1
+CREATE INDEX genres_parent_id ON my_bookshop_Genres(parent_ID);
0 commit comments