dkforest

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

161.sql (273B)


      1 -- +migrate Up
      2 ALTER TABLE poker_xmr_transactions ADD COLUMN status INTEGER NOT NULL DEFAULT 0;
      3 CREATE INDEX poker_xmr_transactions_status_idx ON poker_xmr_transactions(status);
      4 UPDATE poker_xmr_transactions SET status = 2 WHERE is_in = 0 AND status = 0;
      5 
      6 -- +migrate Down