summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'AntiSpoof/sql/patch-antispoof.sqlite.sql')
-rw-r--r--AntiSpoof/sql/patch-antispoof.sqlite.sql21
1 files changed, 0 insertions, 21 deletions
diff --git a/AntiSpoof/sql/patch-antispoof.sqlite.sql b/AntiSpoof/sql/patch-antispoof.sqlite.sql
deleted file mode 100644
index dc0311b9..00000000
--- a/AntiSpoof/sql/patch-antispoof.sqlite.sql
+++ /dev/null
@@ -1,21 +0,0 @@
-CREATE TABLE /*$wgDBprefix*/spoofuser (
- -- Equivalent to user_name, but not guaranteed to be in sync.
- -- Do a join against user_name to confirm that an account hasn't
- -- been renamed or deleted away.
- su_name VARCHAR(255),
-
- -- Normalized form of name for similarity-spoofing checks
- su_normalized VARCHAR(255),
-
- -- ok/not-ok according to the looks-like-a-valid-name check
- su_legal BOOL,
-
- -- error message that came out of the unicode check, if any
- su_error TEXT,
-
- -- unique record per username
- PRIMARY KEY (su_name)
-) /*$wgDBTableOptions*/;
-
--- for checking matching possible spoofs
-CREATE INDEX su_normname_idx ON /*$wgDBprefix*/spoofuser (su_normalized, su_name);