Fixed regexp in tests

This commit is contained in:
SilverFire - Dmitry Naumenko
2018-02-20 23:56:36 +02:00
parent d0e52c6172
commit 4fbece20ce
5 changed files with 57 additions and 2 deletions

View File

@@ -178,7 +178,8 @@ CREATE TABLE "document" (
id serial primary key,
title varchar(255) not null,
content text not null,
version integer not null default 0
version integer not null default 0,
properties json
);
CREATE TABLE "comment" (