aingle_minimal 0.3.0

Ultra-light AIngle node for IoT devices (<1MB RAM)
Documentation
SQLite format 3@  	
		.O|
�	�W�
B(��F
�
�
K	�
��ktablemetadatametadataCREATE TABLE metadata (
                key TEXT PRIMARY KEY,
                value TEXT NOT NULL
            )/Cindexsqlite_autoindex_metadata_1metadata
O
-iindexidx_links_targetlinksCREATE INDEX idx_links_target ON links(target)I	)aindexidx_links_baselinks
CREATE INDEX idx_links_base ON links(base)]3{indexidx_entries_createdentries	CREATE INDEX idx_entries_created ON entries(created_at)`7}indexidx_actions_timestampactionsCREATE INDEX idx_actions_timestamp ON actions(timestamp)N+eindexidx_actions_seqactionsCREATE INDEX idx_actions_seq ON actions(seq)�G�mtablelinkslinksCREATE TABLE links (
                id INTEGER PRIMARY KEY,
                base BLOB NOT NULL,
                target BLOB NOT NULL,
                link_type INTEGER NOT NULL,
                tag BLOB,
                timestamp INTEGER NOT NULL,
                deleted INTEGER DEFAULT 0
            )�c�tableentriesentriesCREATE TABLE entries (
                hash BLOB PRIMARY KEY,
                entry_type TEXT NOT NULL,
                content BLOB NOT NULL,
                created_at INTEGER NOT NULL
            )-Aindexsqlite_autoindex_entries_1entries�o�5tableactionsactionsCREATE TABLE actions (
                hash BLOB PRIMARY KEY,
                seq INTEGER NOT NULL,
                timestamp INTEGER NOT NULL,
                action_type TEXT NOT NULL,
                author BLOB NOT NULL,
                prev_action BLOB,
                entry_hash BLOB,
                data BLOB NOT NULL
            )-Aindexsqlite_autoindex_actions_1actions