Line # Revision Author
1 234 ahitrov create table blog_tags
2 (
3 id integer not null primary key default nextval('public.documents_id_seq'::text),
4 class text not null,
5 ctime timestamp not null default now(),
6 mtime timestamp not null default now(),
7 status smallint not null default 0,
8 uid integer not null,
9 sections integer,
10 name text,
11 rate integer default 0,
12 data text
13 );
14 create index blog_tags_sections on blog_tags (sections);
15 create index blog_tags_uid on blog_tags (uid);