mirror of
https://github.com/joomla-extensions/patchtester.git
synced 2025-01-10 17:24:39 +00:00
description nvarchar limit to 4000
The limit of 5000 seems to be to much for SQL2012
This commit is contained in:
parent
7135cff379
commit
c8b43fb377
@ -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
|
||||
(
|
||||
|
Loading…
Reference in New Issue
Block a user