Skip to content

Commit

Permalink
Correcting _user_profile profile_value
Browse files Browse the repository at this point in the history
  • Loading branch information
infograf768 committed Dec 9, 2014
1 parent bdce3ac commit 4a2f90d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion installation/sql/mysql/joomla.sql
Original file line number Diff line number Diff line change
Expand Up @@ -1607,7 +1607,7 @@ CREATE TABLE IF NOT EXISTS `#__user_notes` (
CREATE TABLE IF NOT EXISTS `#__user_profiles` (
`user_id` int(11) NOT NULL,
`profile_key` varchar(100) NOT NULL,
`profile_value` varchar(255) NOT NULL,
`profile_value` TEXT NOT NULL,
`ordering` int(11) NOT NULL default '0',
UNIQUE KEY `idx_user_id_profile_key` (`user_id`,`profile_key`)
) DEFAULT CHARSET=utf8 COMMENT='Simple user profile storage table';
Expand Down
2 changes: 1 addition & 1 deletion installation/sql/sqlazure/joomla.sql
Original file line number Diff line number Diff line change
Expand Up @@ -6028,7 +6028,7 @@ BEGIN
CREATE TABLE [#__user_profiles](
[user_id] [int] NOT NULL,
[profile_key] [nvarchar](100) NOT NULL,
[profile_value] [nvarchar](255) NOT NULL,
[profile_value] [nvarchar](max) NOT NULL,
[ordering] [int] NOT NULL,
CONSTRAINT [#__user_profiles$idx_user_id_profile_key] UNIQUE CLUSTERED
(
Expand Down

0 comments on commit 4a2f90d

Please sign in to comment.