mirror of
https://github.com/Znote/ZnoteAAC.git
synced 2025-04-30 03:09:22 +02:00
Changed znote_accounts ip row to UNSIGNED (#269)
This commit is contained in:
parent
6fa7d19cf1
commit
013e8f1174
@ -38,7 +38,7 @@ INSERT INTO `znote` (`version`, `installed`) VALUES
|
|||||||
CREATE TABLE IF NOT EXISTS `znote_accounts` (
|
CREATE TABLE IF NOT EXISTS `znote_accounts` (
|
||||||
`id` int(11) NOT NULL AUTO_INCREMENT,
|
`id` int(11) NOT NULL AUTO_INCREMENT,
|
||||||
`account_id` int(11) NOT NULL,
|
`account_id` int(11) NOT NULL,
|
||||||
`ip` int(10) NOT NULL,
|
`ip` int(10) UNSIGNED NOT NULL,
|
||||||
`created` int(10) NOT NULL,
|
`created` int(10) NOT NULL,
|
||||||
`points` int(10) DEFAULT 0,
|
`points` int(10) DEFAULT 0,
|
||||||
`cooldown` int(10) DEFAULT 0,
|
`cooldown` int(10) DEFAULT 0,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user