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.
MP: fixed search results form so it actually clears the forms now and…
… so that it will remember the last search that was done. Also prep new sql upgrade file
- Loading branch information
1 parent
a0076ab
commit 2d6c417
Showing
3 changed files
with
59 additions
and
13 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
-- Create the block table if it is not there.. fixes bug in v09.05.02 | ||
CREATE TABLE IF NOT EXISTS `blocks` ( | ||
`id` int(10) unsigned NOT NULL, | ||
`ip_addr_start` int(10) unsigned NOT NULL, | ||
`ip_addr_end` int(10) unsigned NOT NULL, | ||
`name` varchar(63) NOT NULL, | ||
`notes` varchar(255) NOT NULL, | ||
PRIMARY KEY (`id`) | ||
) ENGINE=InnoDB DEFAULT CHARSET=latin1 COMMENT='User Defined IP Address Ranges'; | ||
|
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