PHP Classes

File: tables.sql

Recommend this page to a friend!
  Classes of Francesco Cirać   Log Limiter   tables.sql   Download  
File: tables.sql
Role: Auxiliary data
Content type: text/plain
Description: SQL database dump
Class: Log Limiter
Limit the number of failed login attempts
Author: By
Last change:
Date: 15 years ago
Size: 395 bytes
 

Contents

Class file image Download
CREATE TABLE `spack_ll_attempts` ( `ip` varchar(15) NOT NULL, `date` int(10) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE `spack_ll_blocks` ( `ip` varchar(15) NOT NULL, `expire` int(10) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE `spack_ll_log` ( `ip` varchar(15) NOT NULL, `date` int(10) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8;