dkforest

A forum and chat platform (onion)
git clone https://git.dasho.dev/n0tr1v/dkforest.git
Log | Files | Refs | LICENSE

3.sql (309B)


      1 -- +migrate Up
      2 CREATE INDEX chat_messages_created_at_idx ON chat_messages (created_at);
      3 ALTER TABLE users ADD COLUMN chat_font INTEGER DEFAULT 1 NOT NULL;
      4 ALTER TABLE users ADD COLUMN chat_bold TINYINT DEFAULT 0 NOT NULL;
      5 ALTER TABLE users ADD COLUMN chat_italic TINYINT DEFAULT 0 NOT NULL;
      6 
      7 -- +migrate Down