Skip to content

Instantly share code, notes, and snippets.

@mjmsmith
mjmsmith / favorite.sql
Created April 5, 2010 19:14
munge metafilter infodump for easier querying
DROP TABLE IF EXISTS favorite;
CREATE TABLE favorite (
id int(11) NOT NULL AUTO_INCREMENT,
created datetime NOT NULL,
favee_id int(11) NOT NULL,
faver_id int(11) NOT NULL,
post_id int(11) NOT NULL,
comment_id int(11) NOT NULL,
type int(11) NOT NULL,
PRIMARY KEY (id)