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.
Updating ipv6 branch to perform upgrades to tables for ipv6 data. Sho…
…uld be non destructive.
- Loading branch information
1 parent
b62d77d
commit 9b6786f
Showing
2 changed files
with
13 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
<?xml version="1.0"?> | ||
<schema version="0.3"> | ||
<sql> | ||
<query platform="mysql|mysqlt">ALTER TABLE `blocks` CHANGE `ip_addr_start` `ip_addr_start` DECIMAL( 39, 0 ) UNSIGNED NOT NULL;</query> | ||
<query platform="mysql|mysqlt">ALTER TABLE `blocks` CHANGE `ip_addr_end` `ip_addr_end` DECIMAL( 39, 0 ) UNSIGNED NOT NULL;</query> | ||
<query platform="mysql|mysqlt">ALTER TABLE `subnets` CHANGE `ip_addr` `ip_addr` DECIMAL( 39, 0 ) UNSIGNED NOT NULL;</query> | ||
<query platform="mysql|mysqlt">ALTER TABLE `subnets` CHANGE `ip_mask` `ip_mask` DECIMAL( 39, 0 ) UNSIGNED NOT NULL;</query> | ||
<query platform="mysql|mysqlt">ALTER TABLE `interfaces` CHANGE `ip_addr` `ip_addr` DECIMAL( 39, 0 ) UNSIGNED NOT NULL;</query> | ||
</sql> | ||
</schema> | ||
|
||
|
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