Revision 350 (by ahitrov, 2013/05/22 17:41:46) New table with webshop operations
XML-based protocol for server-server conversation
create table monetaru_operations
(
	id integer not null primary key default nextval('public.documents_id_seq'::text),
	class text not null,
	ctime timestamp not null default now(),
	mtime timestamp not null default now(),
	status smallint not null default 0,
	name text,
	order_id integer not null,
	uid integer not null,
        sum float,
	data text
);
CREATE INDEX monetaru_operations_order ON monetaru_operations USING btree (order_id);