summaryrefslogtreecommitdiff
path: root/maintenance/archives/patch-usernewtalk2.sql
diff options
context:
space:
mode:
Diffstat (limited to 'maintenance/archives/patch-usernewtalk2.sql')
-rw-r--r--maintenance/archives/patch-usernewtalk2.sql6
1 files changed, 6 insertions, 0 deletions
diff --git a/maintenance/archives/patch-usernewtalk2.sql b/maintenance/archives/patch-usernewtalk2.sql
new file mode 100644
index 00000000..477109b7
--- /dev/null
+++ b/maintenance/archives/patch-usernewtalk2.sql
@@ -0,0 +1,6 @@
+CREATE TABLE /*$wgDBprefix*/user_newtalk (
+ user_id int(5) NOT NULL default '0',
+ user_ip varchar(40) NOT NULL default '',
+ INDEX user_id (user_id),
+ INDEX user_ip (user_ip)
+);