Revision 349 (by ahitrov, 2013/05/22 13:52:41) Webshop operations log
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,
	data text
);
CREATE INDEX monetaru_operations_order ON monetaru_operations USING btree (order_id);