dkforest

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

136.sql (290B)


      1 -- +migrate Up
      2 CREATE TABLE IF NOT EXISTS spam_filters (
      3     id INTEGER NOT NULL PRIMARY KEY,
      4     filter VARCHAR(255) NOT NULL,
      5     is_regex TINYINT(1) NOT NULL DEFAULT 0,
      6     action INTEGER NOT NULL DEFAULT 0,
      7     created_at DATETIME NOT NULL DEFAULT CURRENT_TIMESTAMP);
      8 
      9 -- +migrate Down