sqlite3 updates.db 
ATTACH DATABASE 'updates.db' as 'bot';
CREATE TABLE bot.history(
   DATE           TEXT    NOT NULL,
   chatid           TEXT    NOT NULL,
   name           TEXT    NOT NULL
);
INSERT INTO history (date, chatid, name) values (DATETIME('now'), 'test', 'test');
select * from history;
select rowid, date, message from history;
sqlite3 redundant.db 
ATTACH DATABASE 'redundant.db' as 'bot';
CREATE TABLE bot.history(
   md5hash           TEXT    NOT NULL
);

results matching ""

    No results matching ""