Perepelkin Andrew <perepelkin.work@gmail.com> wrote:
> Is there any workaround exist?
Use a maximum length on your varchar declarations?:
CREATE TABLE applications
(
id character varying(10000000) NOT NULL,
"name" character varying(10000000) NOT NULL,
"version" character varying(10000000) NOT NULL,
)
Of course, if you don't intend to support ten million characters for
any of those, you could use a smaller number....
-Kevin