Skip to content

Commit

Permalink
Added user_sitter_iplog table
Browse files Browse the repository at this point in the history
Adde a new table to store sitter's IPs for security reasons.
  • Loading branch information
kirirur committed Oct 14, 2014
1 parent 68a9c54 commit c5a139d
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions stfc.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1972,6 +1972,25 @@ CREATE TABLE IF NOT EXISTS `user_logs` (
--


-- --------------------------------------------------------

--
-- Table structure for table `user_sitter_iplog`
--

CREATE TABLE IF NOT EXISTS `user_sitter_iplog` (
`id` int(11) NOT NULL,
`user_id` int(11) NOT NULL default '0',
`sitter_id` int(11) NOT NULL default '0',
`ip` varchar(32) NOT NULL default '',
`time` int(11) NOT NULL default '0'
) ENGINE=MyISAM default CHARSET=latin1 COMMENT='Tabella IP sitter';

--
-- Dumping data for table `user_sitter_iplog`
--


-- --------------------------------------------------------

--
Expand Down

0 comments on commit c5a139d

Please sign in to comment.