LeOS-Genesis/app/src/main/java/com/darkweb/genesissearchengine/constants/sql.java

13 lines
332 B
Java
Raw Normal View History

2020-10-05 13:12:00 +02:00
package com.darkweb.genesissearchengine.constants;
public class sql
{
/*HISTORY*/
2020-10-20 16:55:08 +02:00
public static final String SQL_CLEAR_HISTORY = "delete from history where 1";
public static final String SQL_CLEAR_BOOKMARK = "delete from bookmark where 1";
2021-05-07 16:27:42 +02:00
public static final String SQL_CLEAR_TAB = "delete from tab where 1";
2020-10-05 13:12:00 +02:00
}