repo.or.cz
/
mediawiki.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
history
|
raw
|
HEAD
Localisation updates from http://translatewiki.net.
[mediawiki.git]
/
maintenance
/
oracle
/
archives
/
patch-ufg_group-length-increase-255.sql
blob
6a4a751780aeec9543fdf4c0cb445e37357ee62a
1
define mw_prefix='{$wgDBprefix}';
2
3
/*$mw$*/
4
BEGIN
5
EXECUTE IMMEDIATE 'ALTER TABLE &mw_prefix.user_former_groups MODIFY ufg_group VARCHAR2(255) NOT NULL';
6
EXCEPTION WHEN OTHERS THEN
7
IF (SQLCODE = -01442) THEN NULL; ELSE RAISE; END IF;
8
END;
9
/*$mw$*/