RE: Deleting documents/manuscripts - Forum
Foren
RE: Deleting documents/manuscripts
Ken M. Penner, geändert vor 5 Jahren.
Deleting documents/manuscripts
Padawan Beiträge: 31 Beitrittsdatum: 22.06.18 Neueste Beiträge
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?
Troy A. Griffitts, geändert vor 5 Jahren.
RE: Deleting documents/manuscripts
Youngling Beiträge: 13 Beitrittsdatum: 12.08.16 Neueste Beiträge
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.