mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-29 00:11:49 -05:00
Add license headers to `h`, `c` and `sql` files as this files haven't been checked previously, script now to automatically updates current year in existing licenses.
9 lines
272 B
SQL
9 lines
272 B
SQL
-- Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
-- For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
CREATE TABLE IF NOT EXISTS notifications(
|
|
_id INTEGER PRIMARY KEY,
|
|
key INTEGER UNIQUE DEFAULT 0,
|
|
value INTEGER DEFAULT 0
|
|
);
|