Skip to content

Commit

Permalink
Reduce unit supply in advanced starts
Browse files Browse the repository at this point in the history
  • Loading branch information
RecursiveVision committed Dec 6, 2024
1 parent bbbc19e commit c16b30e
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions (2) Vox Populi/Database Changes/Tech/EraSweeps.sql
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ CREATE TEMP TABLE EraSweep (

INSERT INTO EraSweep
VALUES
('ERA_CLASSICAL', 100, 100, 2),
('ERA_MEDIEVAL', 200, 200, 4),
('ERA_RENAISSANCE', 400, 400, 6),
('ERA_INDUSTRIAL', 600, 600, 8),
('ERA_MODERN', 800, 800, 10),
('ERA_POSTMODERN', 1000, 1000, 12),
('ERA_FUTURE', 1200, 1200, 14);
('ERA_CLASSICAL', 100, 100, 1),
('ERA_MEDIEVAL', 200, 200, 2),
('ERA_RENAISSANCE', 400, 400, 3),
('ERA_INDUSTRIAL', 600, 600, 4),
('ERA_MODERN', 800, 800, 5),
('ERA_POSTMODERN', 1000, 1000, 6),
('ERA_FUTURE', 1200, 1200, 7);

UPDATE Eras
SET
Expand Down

0 comments on commit c16b30e

Please sign in to comment.