mirror of https://github.com/BOINC/boinc.git
- DB: for tables w/ fulltext indices, specify engine as MyISAM
from Nicolas; fixes #904 svn path=/trunk/boinc/; revision=18201
This commit is contained in:
parent
c5439380f7
commit
c86419a9ff
|
@ -4738,3 +4738,10 @@ David 25 May 2009
|
||||||
|
|
||||||
html/inc/
|
html/inc/
|
||||||
text_transform.inc
|
text_transform.inc
|
||||||
|
|
||||||
|
David 26 May 2009
|
||||||
|
- DB: for tables w/ fulltext indices, specify engine as MyISAM
|
||||||
|
from Nicolas; fixes #904
|
||||||
|
|
||||||
|
db/
|
||||||
|
schema.sql
|
||||||
|
|
|
@ -307,7 +307,7 @@ create table profile (
|
||||||
verification integer not null,
|
verification integer not null,
|
||||||
-- UOD screening status: -1 denied, 0 unrated, 1 approved
|
-- UOD screening status: -1 denied, 0 unrated, 1 approved
|
||||||
primary key (userid)
|
primary key (userid)
|
||||||
);
|
) engine=MyISAM;
|
||||||
|
|
||||||
-- message board category
|
-- message board category
|
||||||
-- help desk is a group of categories that are handled separately
|
-- help desk is a group of categories that are handled separately
|
||||||
|
@ -380,7 +380,7 @@ create table thread (
|
||||||
sticky tinyint not null default 0,
|
sticky tinyint not null default 0,
|
||||||
locked tinyint not null default 0,
|
locked tinyint not null default 0,
|
||||||
primary key (id)
|
primary key (id)
|
||||||
);
|
) engine=MyISAM;
|
||||||
|
|
||||||
-- postings in a thread (or answers)
|
-- postings in a thread (or answers)
|
||||||
-- Each thread has an initial post
|
-- Each thread has an initial post
|
||||||
|
@ -402,7 +402,7 @@ create table post (
|
||||||
hidden integer not null,
|
hidden integer not null,
|
||||||
-- nonzero if hidden by moderators
|
-- nonzero if hidden by moderators
|
||||||
primary key (id)
|
primary key (id)
|
||||||
);
|
) engine=MyISAM;
|
||||||
|
|
||||||
-- subscription to a thread
|
-- subscription to a thread
|
||||||
--
|
--
|
||||||
|
|
Loading…
Reference in New Issue