You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
CREATE TABLE karma (item character varying(255) NOT NULL, time timestamp with time zone NOT NULL, direction smallint NOT NULL, reason text);
CREATE INDEX karma_direction ON karma USING btree (direction);
CREATE INDEX karma_item ON karma USING btree (item);
CREATE INDEX karma_item_like ON karma USING btree (item varchar_pattern_ops);
DROP TABLE IF EXISTS karma_maps CASCADE;
CREATE TABLE karma_maps (from_name character varying(255) NOT NULL, to_name character varying(255) NOT NULL);
DROP TABLE IF EXISTS URLS CASCADE;
CREATE TABLE urls (url text NOT NULL, posted timestamp with time zone NOT NULL, short_url text, nick text NOT NULL);
DROP TABLE IF EXISTS last_seen;
CREATE TABLE last_seen (target character varying(255) NOT NULL, channel character varying(255) NOT NULL, message text NOT NULL, time timestamp with time zone NOT NULL);
DROP TABLE IF EXISTS user_tells;
CREATE TABLE user_tells (target character varying(255) NOT NULL, sender character varying(255) NOT NULL, message text NOT NULL);