CC-84: Smart Playlists
- increased size of criteria column - it was too smallf for some fields
This commit is contained in:
parent
bcab41cb86
commit
483ffdf6af
3 changed files with 3 additions and 3 deletions
|
@ -273,7 +273,7 @@
|
|||
</table>
|
||||
<table name="cc_blockcriteria" phpName="CcBlockcriteria">
|
||||
<column name="id" phpName="DbId" type="INTEGER" primaryKey="true" autoIncrement="true" required="true"/>
|
||||
<column name="criteria" phpName="DbCriteria" type="VARCHAR" size="16" required="true"/>
|
||||
<column name="criteria" phpName="DbCriteria" type="VARCHAR" size="32" required="true"/>
|
||||
<column name="modifier" phpName="DbModifier" type="VARCHAR" size="16" required="true"/>
|
||||
<column name="value" phpName="DbValue" type="VARCHAR" size="512" required="true"/>
|
||||
<column name="extra" phpName="DbExtra" type="VARCHAR" size="512" required="false"/>
|
||||
|
|
|
@ -363,7 +363,7 @@ DROP TABLE "cc_blockcriteria" CASCADE;
|
|||
CREATE TABLE "cc_blockcriteria"
|
||||
(
|
||||
"id" serial NOT NULL,
|
||||
"criteria" VARCHAR(16) NOT NULL,
|
||||
"criteria" VARCHAR(32) NOT NULL,
|
||||
"modifier" VARCHAR(16) NOT NULL,
|
||||
"value" VARCHAR(512) NOT NULL,
|
||||
"extra" VARCHAR(512),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue