Index: trunk/extensions/Patroller/patrollers.sql |
— | — | @@ -0,0 +1,8 @@ |
| 2 | +-- Table to hold temporary "assignments" of recent changes |
| 3 | +-- when using the Patroller extension. |
| 4 | +CREATE TABLE /*$wgDBprefix*/patrollers ( |
| 5 | + ptr_change int(8) NOT NULL, |
| 6 | + ptr_timestamp varchar(14) NOT NULL, |
| 7 | + UNIQUE KEY ptr_change (ptr_change), |
| 8 | + KEY ptr_timestamp (ptr_timestamp) |
| 9 | +) TYPE=MEMORY; |
\ No newline at end of file |
Property changes on: trunk/extensions/Patroller/patrollers.sql |
___________________________________________________________________ |
Added: svn:eol-style |
1 | 10 | + native |