33
0
mirror of https://github.com/joomla-extensions/patchtester.git synced 2025-02-02 20:08:25 +00:00

Merge pull request #78 from sovainfo/patch-2

description nvarchar limit to 4000
This commit is contained in:
Michael Babker 2015-03-12 12:58:47 -04:00
commit ad532895c7

View File

@ -2,7 +2,7 @@ CREATE TABLE [#__patchtester_pulls] (
[id] [bigint] IDENTITY(1,1) NOT NULL, [id] [bigint] IDENTITY(1,1) NOT NULL,
[pull_id] [bigint] NOT NULL, [pull_id] [bigint] NOT NULL,
[title] [nvarchar](100) 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, [pull_url] [nvarchar](255) NOT NULL,
CONSTRAINT [PK_#__patchtester_pulls] PRIMARY KEY CLUSTERED CONSTRAINT [PK_#__patchtester_pulls] PRIMARY KEY CLUSTERED
( (