dkforest

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

31.sql (169B)


      1 -- +migrate Up
      2 ALTER TABLE chat_rooms ADD COLUMN is_ephemeral TINYINT(1) DEFAULT 1;
      3 
      4 CREATE INDEX rooms_is_ephemeral_idx ON chat_rooms (is_ephemeral);
      5 
      6 -- +migrate Down