const CREATE_TABLE_PUSH_SQL: &str = "-- This Source Code Form is subject to the terms of the Mozilla Public\n-- License, v. 2.0. If a copy of the MPL was not distributed with this\n-- file, You can obtain one at http://mozilla.org/MPL/2.0/.\n\nCREATE TABLE\nIF NOT EXISTS push_record\n(\n uaid TEXT NOT NULL,\n channel_id TEXT NOT NULL UNIQUE,\n endpoint TEXT NOT NULL UNIQUE,\n scope TEXT NOT NULL,\n key TEXT NOT NULL,\n ctime INTEGER NOT NULL,\n app_server_key TEXT,\n native_id TEXT,\n PRIMARY KEY (uaid, channel_id)\n);\n\nCREATE TABLE\nIF NOT EXISTS meta_data\n(\n key TEXT PRIMARY KEY,\n value NOT NULL\n) without ROWID;\n";