留言板

Deleting documents/manuscripts

thumbnail
Ken M. Penner,修改在4 年前。

Deleting documents/manuscripts

Padawan 帖子: 31 加入日期: 18-6-22 最近的帖子
The site template comes with preloaded manuscripts for the New Testament. I see how to add manuscripts/documents, but how does one delete them?
thumbnail
Troy A. Griffitts,修改在4 年前。

RE: Deleting documents/manuscripts

Youngling 帖子: 13 加入日期: 16-8-12 最近的帖子
For "safety reason" there is no delete method for entire witnesses in the user interface of the VMRCRE.  emoticon  I realize that's a copout, but there is some truth to it.

You can either not add the sample data when you setup your mysql database, or else:

$ mysql
mysql> delete from DOCUMENT where DOCUMENTID between 10000 and 40000;
mysql> delete from BIBLICALCONTENT where DOCUMENTID between 10000 and 40000;
mysql> exit;

This should mostly clean things up for you.