forked from helidon-io/helidon
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add specific sql script for oracle database (helidon-io#8426)
Signed-off-by: tvallin <thibault.vallin@oracle.com>
- Loading branch information
1 parent
581ea71
commit 437d7b9
Showing
3 changed files
with
31 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
25 changes: 25 additions & 0 deletions
25
...s/src/main/archetype/mp/database/files/src/main/resources/META-INF/init_script.sql.oracle
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
INSERT INTO POKEMONTYPE VALUES (1, 'Normal') | ||
INSERT INTO POKEMONTYPE VALUES (2, 'Fighting') | ||
INSERT INTO POKEMONTYPE VALUES (3, 'Flying') | ||
INSERT INTO POKEMONTYPE VALUES (4, 'Poison') | ||
INSERT INTO POKEMONTYPE VALUES (5, 'Ground') | ||
INSERT INTO POKEMONTYPE VALUES (6, 'Rock') | ||
INSERT INTO POKEMONTYPE VALUES (7, 'Bug') | ||
INSERT INTO POKEMONTYPE VALUES (8, 'Ghost') | ||
INSERT INTO POKEMONTYPE VALUES (9, 'Steel') | ||
INSERT INTO POKEMONTYPE VALUES (10, 'Fire') | ||
INSERT INTO POKEMONTYPE VALUES (11, 'Water') | ||
INSERT INTO POKEMONTYPE VALUES (12, 'Grass') | ||
INSERT INTO POKEMONTYPE VALUES (13, 'Electric') | ||
INSERT INTO POKEMONTYPE VALUES (14, 'Psychic') | ||
INSERT INTO POKEMONTYPE VALUES (15, 'Ice') | ||
INSERT INTO POKEMONTYPE VALUES (16, 'Dragon') | ||
INSERT INTO POKEMONTYPE VALUES (17, 'Dark') | ||
INSERT INTO POKEMONTYPE VALUES (18, 'Fairy') | ||
|
||
INSERT INTO POKEMON VALUES (1, 'Bulbasaur', 12) | ||
INSERT INTO POKEMON VALUES (2, 'Charmander', 10) | ||
INSERT INTO POKEMON VALUES (3, 'Squirtle', 11) | ||
INSERT INTO POKEMON VALUES (4, 'Caterpie', 7) | ||
INSERT INTO POKEMON VALUES (5, 'Weedle', 7) | ||
INSERT INTO POKEMON VALUES (6, 'Pidgey', 3) |