forked from opennetadmin/ona
-
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.
- Loading branch information
1 parent
effd81f
commit 7d3979c
Showing
5 changed files
with
21 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
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 |
---|---|---|
@@ -1,3 +1,8 @@ | ||
Upgrades prior to version 08.02.18 must be manually done by loading the file install/PRE-v08.02.18-to-08.02.18.sql into the database. | ||
This upgrade step has not been tested and likly has errors. | ||
|
||
Updates after this version should automatically process. | ||
If you are currently on v08.02.18 and you are upgrading to version v08.04.15 then you must load the following sql file: | ||
|
||
mysql -u <adminuser> -p ona < install/v08.02.18-to-v08.04.15.sql | ||
|
||
Updates after version v08.04.15 should automatically process. |
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
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
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,8 @@ | ||
INSERT INTO `sys_config` (`name`, `value`, `description`) VALUES | ||
('version', '', 'Tracks current installed version, used to detect when upgrades should be done.'), | ||
('upgrade_index', '1', 'Tracks current upgrade index, used to process database upgrades in order.'); | ||
|
||
INSERT INTO `permissions` (`id`, `name`, `description`) VALUES | ||
(16, 'vlan_add', 'Add VLANs and VLAN Campuses'), | ||
(17, 'vlan_del', 'Delete VLANs and VLAN Campuses'), | ||
(18, 'vlan_modify', 'Modify VLANs and VLAN Campuses'); |