Source code
Revision control
Copy as Markdown
Other Tools
/*
This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
/**
* The current SQLite database schema version
*/
export const CURRENT_SCHEMA_VERSION = 1;
/**
* The name of the SQLite database file
*/
export const DB_FILE_NAME = "ai-tab-pages-store.sqlite";
/**
* Preference branch for the AITab Page storage location
*/
export const PREF_BRANCH = "browser.smartwindow.aiTabHistory";