Skip to content

Commit

Permalink
Adding new in-game location
Browse files Browse the repository at this point in the history
  • Loading branch information
Matt Hollis committed Nov 17, 2012
1 parent 25c331d commit 1fe421d
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 1 deletion.
3 changes: 2 additions & 1 deletion application/classes/minion/task/install.php
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,8 @@ protected function _write_default_schema(Kohana_Database $db)
(21, 'WvW Location TBD', 1),
(22, 'Heart of the Mists', 1),
(23, 'Misc World PvE Zone', 1),
(24, 'Shenanigans Night', 1);"
(24, 'Shenanigans Night', 1),
(25, 'Fractals of the Mists' 1);"
);

$db->query(NULL, 'CREATE TABLE IF NOT EXISTS `professions` (
Expand Down
1 change: 1 addition & 0 deletions application/classes/model/location.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ class Model_Location extends ORM {
'Heart of the Mists' => 22,
'Misc World PvE Zone' => 23,
'Shenanigans Night' => 24,
'Fractals of the Mists' => 25,
);

// Relationships
Expand Down
1 change: 1 addition & 0 deletions database.sql
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ INSERT INTO `locations` (`id`, `name`, `visibility`) VALUES
(22, 'Heart of the Mists', 1),
(23, 'Misc World PvE Zone', 1),
(24, 'Shenanigans Night', 1);
(25, 'Fractals of the Mists', 1);

CREATE TABLE IF NOT EXISTS `professions` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
Expand Down

0 comments on commit 1fe421d

Please sign in to comment.