Deleting documents/manuscripts - Forum
掲示板
Deleting documents/manuscripts
5年前 に Ken M. Penner によって更新されました。
Deleting documents/manuscripts
Padawan 投稿: 31 参加年月日: 18/06/22 最新の投稿
00
The site template comes with preloaded manuscripts for the New Testament. I see how to add manuscripts/documents, but how does one delete them?
5年前 に Troy A. Griffitts によって更新されました。
RE: Deleting documents/manuscripts
Youngling 投稿: 13 参加年月日: 16/08/12 最新の投稿
00
For "safety reason" there is no delete method for entire witnesses in the user interface of the VMRCRE. 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.
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.