~aleteoryx/muditaos

ref: 853b0787df3a08d401faea35c3f87634029bd6ac muditaos/image/user/db/custom_quotes_001.sql -rw-r--r-- 297 bytes
853b0787 — wojtekrzepecki [EGD-8227] Refactor quotes db 4 years ago
                                                                                
1
2
3
4
5
6
7
8
9
-- Copyright (c) 2017-2022, Mudita Sp. z.o.o. All rights reserved.
-- For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

CREATE TABLE IF NOT EXISTS quote_table(
    quote_id INTEGER PRIMARY KEY,
    quote TEXT NOT NULL,
    author TEXT,
    enabled BOOLEAN NOT NULL DEFAULT TRUE
);