Browse Source

`expires` can be NULL

pull/40/head
Savetheinternet 14 years ago
parent
commit
5190e9a456
  1. 2
      install.sql

2
install.sql

@ -109,6 +109,6 @@ INSERT INTO `mods` (`id`, `username`, `password`, `type`) VALUES
CREATE TABLE IF NOT EXISTS `bans` (
`ip` varchar( 15 ) NOT NULL ,
`mod` int NOT NULL COMMENT 'which mod made the ban',
`expires` int NOT NULL,
`expires` int NULL,
`reason` text NULL
) ENGINE = InnoDB;

Loading…
Cancel
Save