Files
l2j_mobius/trunk/dist/tools/sql/login/accounts_ipauth.sql
2015-01-01 23:19:30 +00:00

5 lines
197 B
SQL

CREATE TABLE IF NOT EXISTS `accounts_ipauth` (
`login` varchar(45) NOT NULL,
`ip` char(15) NOT NULL,
`type` enum('deny','allow') NULL DEFAULT 'allow'
) ENGINE=InnoDB DEFAULT CHARSET=utf8;