View file laik_na_foto/like_fot.sql

File size: 208B
CREATE TABLE IF NOT EXISTS `like_fot` (  `id_foto` int(11) NOT NULL,
  `id_user` int(11) NOT NULL,
  `like` int(11) DEFAULT '0',
KEY `id_foto` (`id_foto`,`id_user`)
) ENGINE=MyISAM DEFAULT CHARSET=utf8;