31
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2024-05-29 03:50:46 +00:00

description nvarchar limit to 4000

The limit of 5000 seems to be to much for SQL2012
This commit is contained in:
sovainfo 2015-03-12 17:57:55 +01:00
parent 7135cff379
commit c8b43fb377

View File

@ -2,7 +2,7 @@ CREATE TABLE [#__patchtester_pulls] (
[id] [bigint] IDENTITY(1,1) NOT NULL,
[pull_id] [bigint] NOT NULL,
[title] [nvarchar](100) NOT NULL,
[description] [nvarchar](5000) NOT NULL DEFAULT '',
[description] [nvarchar](4000) NOT NULL DEFAULT '',
[pull_url] [nvarchar](255) NOT NULL,
CONSTRAINT [PK_#__patchtester_pulls] PRIMARY KEY CLUSTERED
(