WebGUI 2.3.3 release
This commit is contained in:
parent
12f9388a06
commit
73909699ff
8 changed files with 153 additions and 58 deletions
|
|
@ -1197,6 +1197,7 @@ INSERT INTO international VALUES (343,'WebGUI','Deutsch','Profil anschauen.');
|
|||
INSERT INTO international VALUES (345,'WebGUI','Deutsch','Kein Mitglied');
|
||||
INSERT INTO international VALUES (346,'WebGUI','Deutsch','Dieser Benutzer ist kein Mitglied. Wir haben keine weiteren Informationen über ihn.');
|
||||
INSERT INTO international VALUES (347,'WebGUI','Deutsch','Profil anschauen von');
|
||||
INSERT INTO international VALUES (349,'WebGUI','English','Latest version available');
|
||||
|
||||
#
|
||||
# Table structure for table 'message'
|
||||
|
|
@ -1329,7 +1330,7 @@ INSERT INTO settings VALUES ('profileExtraContact','1');
|
|||
INSERT INTO settings VALUES ('profileMisc','1');
|
||||
INSERT INTO settings VALUES ('profileHome','0');
|
||||
INSERT INTO settings VALUES ('profileWork','0');
|
||||
INSERT INTO settings VALUES ('VERSION','2.3.2');
|
||||
INSERT INTO settings VALUES ('VERSION','2.3.3');
|
||||
|
||||
#
|
||||
# Table structure for table 'style'
|
||||
|
|
|
|||
|
|
@ -132,7 +132,7 @@ CREATE TABLE LinkList (
|
|||
CREATE TABLE LinkList_link (
|
||||
widgetId int(11) default NULL,
|
||||
linkId int(11) NOT NULL default '0',
|
||||
name varchar(30) default NULL,
|
||||
name varchar(128) default NULL,
|
||||
url text,
|
||||
description text,
|
||||
sequenceNumber int(11) NOT NULL default '0',
|
||||
|
|
@ -293,7 +293,7 @@ CREATE TABLE UserSubmission (
|
|||
CREATE TABLE UserSubmission_submission (
|
||||
widgetId int(11) default NULL,
|
||||
submissionId int(11) NOT NULL default '0',
|
||||
title varchar(30) default NULL,
|
||||
title varchar(128) default NULL,
|
||||
dateSubmitted int(11) default NULL,
|
||||
username varchar(30) default NULL,
|
||||
userId int(11) default NULL,
|
||||
|
|
@ -1329,6 +1329,7 @@ INSERT INTO settings VALUES ('profileExtraContact','1');
|
|||
INSERT INTO settings VALUES ('profileMisc','1');
|
||||
INSERT INTO settings VALUES ('profileHome','0');
|
||||
INSERT INTO settings VALUES ('profileWork','0');
|
||||
INSERT INTO settings VALUES ('VERSION','2.3.2');
|
||||
|
||||
#
|
||||
# Table structure for table 'style'
|
||||
|
|
|
|||
3
docs/upgrades/upgrade_2.3.2-2.3.3.sql
Normal file
3
docs/upgrades/upgrade_2.3.2-2.3.3.sql
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
insert into international values ('349','WebGUI','English','Latest version available');
|
||||
update settings set value='2.3.3' where name='VERSION';
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue