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
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) |
NewerOlder