Last active
August 2, 2018 16:49
-
-
Save allenday/1dfde407c181eb72eafc5428736a7069 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE events ( | |
id bigint not null primary key auto_increment, | |
created_at timestamp DEFAULT now(), | |
event character varying(255), | |
nick character varying(255), | |
ip character varying(255), | |
host character varying(255), | |
user_name character varying(255), | |
ident character varying(255), | |
server character varying(255), | |
channel character varying(255), | |
message text, | |
key(created_at) | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment