mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-19 14:40:57 -04: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.
17 lines
411 B
SQL
17 lines
411 B
SQL
-- Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
-- For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
INSERT OR REPLACE INTO contact_group_protected
|
|
(_id, group_id)
|
|
VALUES (1, 1),
|
|
(2, 2),
|
|
(3, 3),
|
|
(4, 4);
|
|
|
|
INSERT OR REPLACE INTO contact_groups
|
|
(_id, name)
|
|
VALUES (1, 'Favourites'),
|
|
(2, 'ICE'),
|
|
(3, 'Blocked'),
|
|
(4, 'Temporary');
|