Browse Source

:memo: Add game squads and an anonymous user

DricomDragon 2 months ago
parent
commit
4ac1c38bcc

+ 20 - 0
dev-back/src/main/resources/db/migration/V1_0_2__Insert_game_squads.sql

@@ -0,0 +1,20 @@
+INSERT INTO dev.player(name)
+	VALUES ('Into The Breach');
+
+INSERT INTO dev.squad(player_id, name, comment, mech_1_id, mech_2_id, mech_3_id)
+	VALUES 
+    (1, 'Rift Walkers', 'Game squad provided by the developers.', 1, 2, 3),
+    (1, 'Steel Judoka', 'Game squad provided by the developers.', 4, 5, 6),
+    (1, 'Rusting Hulks', 'Game squad provided by the developers.', 7, 8, 9),
+    (1, 'Flame Behemoths', 'Game squad provided by the developers.', 10, 11, 12),
+    (1, 'Zenith Guard', 'Game squad provided by the developers.', 13, 14, 15),
+    (1, 'Frozen Titans', 'Game squad provided by the developers.', 16, 17, 18),
+    (1, 'Blitzkrieg', 'Game squad provided by the developers.', 19, 20, 21),
+    (1, 'Hazardous  Mechs', 'Game squad provided by the developers.', 22, 23, 24),
+    (1, 'Secret Squad', 'Game squad provided by the developers.', 25, 26, 27),
+    (1, 'Bombermechs', 'Game squad provided by the developers.', 28, 29, 30),
+    (1, 'Arachnophiles', 'Game squad provided by the developers.', 31, 32, 33),
+    (1, 'Mist Eaters', 'Game squad provided by the developers.', 34, 35, 36),
+    (1, 'Heat Sinkers', 'Game squad provided by the developers.', 37, 38, 39),
+    (1, 'Cataclysm', 'Game squad provided by the developers.', 40, 41, 42)
+    ;

+ 2 - 0
dev-back/src/main/resources/db/migration/V1_0_3__Insert_anonymous_player.sql

@@ -0,0 +1,2 @@
+INSERT INTO dev.player(name)
+	VALUES ('anonymous');