Index: trunk/phase3/maintenance/archives/patch-ipb_anon_only.sql |
— | — | @@ -16,9 +16,9 @@ |
17 | 17 | ipb_by int(8) unsigned NOT NULL default '0', |
18 | 18 | ipb_reason tinyblob NOT NULL default '', |
19 | 19 | ipb_timestamp char(14) binary NOT NULL default '', |
20 | | - ipb_auto boolean NOT NULL default 0, |
21 | | - ipb_anon_only boolean NOT NULL default 0, |
22 | | - ipb_create_account boolean NOT NULL default 1, |
| 20 | + ipb_auto bool NOT NULL default 0, |
| 21 | + ipb_anon_only bool NOT NULL default 0, |
| 22 | + ipb_create_account bool NOT NULL default 1, |
23 | 23 | ipb_expiry char(14) binary NOT NULL default '', |
24 | 24 | ipb_range_start tinyblob NOT NULL default '', |
25 | 25 | ipb_range_end tinyblob NOT NULL default '', |
Index: trunk/phase3/maintenance/mysql5/tables.sql |
— | — | @@ -583,13 +583,13 @@ |
584 | 584 | -- Indicates that the IP address was banned because a banned |
585 | 585 | -- user accessed a page through it. If this is 1, ipb_address |
586 | 586 | -- will be hidden, and the block identified by block ID number. |
587 | | - ipb_auto boolean NOT NULL default '0', |
| 587 | + ipb_auto bool NOT NULL default '0', |
588 | 588 | |
589 | 589 | -- If set to 1, block applies only to logged-out users |
590 | | - ipb_anon_only boolean NOT NULL default 0, |
| 590 | + ipb_anon_only bool NOT NULL default 0, |
591 | 591 | |
592 | 592 | -- Block prevents account creation from matching IP addresses |
593 | | - ipb_create_account boolean NOT NULL default 1, |
| 593 | + ipb_create_account bool NOT NULL default 1, |
594 | 594 | |
595 | 595 | -- Time at which the block will expire. |
596 | 596 | ipb_expiry char(14) binary NOT NULL default '', |
Index: trunk/phase3/maintenance/tables.sql |
— | — | @@ -570,13 +570,13 @@ |
571 | 571 | -- Indicates that the IP address was banned because a banned |
572 | 572 | -- user accessed a page through it. If this is 1, ipb_address |
573 | 573 | -- will be hidden, and the block identified by block ID number. |
574 | | - ipb_auto boolean NOT NULL default 0, |
| 574 | + ipb_auto bool NOT NULL default 0, |
575 | 575 | |
576 | 576 | -- If set to 1, block applies only to logged-out users |
577 | | - ipb_anon_only boolean NOT NULL default 0, |
| 577 | + ipb_anon_only bool NOT NULL default 0, |
578 | 578 | |
579 | 579 | -- Block prevents account creation from matching IP addresses |
580 | | - ipb_create_account boolean NOT NULL default 1, |
| 580 | + ipb_create_account bool NOT NULL default 1, |
581 | 581 | |
582 | 582 | -- Time at which the block will expire. |
583 | 583 | ipb_expiry char(14) binary NOT NULL default '', |