add: channels, messages

This commit is contained in:
trisua 2025-04-27 23:11:37 -04:00
parent 67492cf73f
commit 7774124bd0
40 changed files with 2238 additions and 115 deletions

View file

@ -5,5 +5,7 @@ CREATE TABLE IF NOT EXISTS channels (
created BIGINT NOT NULL,
minimum_role_read INT NOT NULL,
minimum_role_write INT NOT NULL,
position INT NOT NULL
position INT NOT NULL,
members TEXT NOT NULL,
title TEXT NOT NULL
)