mirror of https://github.com/LeOS-GSI/LeOS-Genesis
13 lines
344 B
Java
13 lines
344 B
Java
package com.darkweb.genesissearchengine.constants;
|
|
|
|
public class sql
|
|
{
|
|
/*HISTORY*/
|
|
|
|
public static final String SQL_CLEAR_HISTORY = "delete from history where 1";
|
|
public static final String SQL_CLEAR_BOOKMARK = "delete from bookmark where 1";
|
|
public static final String SQL_CLEAR_TAB = "delete from tab where 1";
|
|
|
|
|
|
}
|