Skip to content

Commit

Permalink
Fixed and renamed migration script.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kugelschieber committed Jun 28, 2017
1 parent ee495f7 commit ec1c3d9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -144,8 +144,7 @@ To contribute please open issues and pull requests. The frontend is build using

### Contributors (alphabetical)

macedot
vinyii
macedot, vinyii

## Links

Expand Down
3 changes: 1 addition & 2 deletions db/mig_1.0.3_1.0.4.sql → db/mig_1.0.3_1.1.0.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

ALTER TABLE `cars`
ADD COLUMN `fixed_setup` varchar(100) NOT NULL AFTER `position`;

Expand All @@ -14,7 +13,7 @@ ALTER TABLE `weather`
ADD COLUMN `wind_base_speed_min` int(10) NOT NULL AFTER `road_variation`,
ADD COLUMN `wind_base_speed_max` int(10) NOT NULL AFTER `wind_base_speed_min`,
ADD COLUMN `wind_base_direction` int(10) NOT NULL AFTER `wind_base_speed_max`,
ADD COLUMN `wind_variation_direction` int(10) NOT NULL AFTER `wind_base_direction`
ADD COLUMN `wind_variation_direction` int(10) NOT NULL AFTER `wind_base_direction`,
DROP COLUMN `realistic_road_temp`;

ALTER TABLE `configurations` DROP COLUMN `time`;
2 changes: 1 addition & 1 deletion public/app/global.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
var VERSION = '1.0.4';
var VERSION = '1.1.0';

0 comments on commit ec1c3d9

Please sign in to comment.