Sha256: f21a012b276ae22c1056df0283c709898be351f9949188767e8a9b9264d30a2b
Contents?: true
Size: 487 Bytes
Versions: 15
Compression:
Stored size: 487 Bytes
Contents
drop table if exists contents; create table contents ( id int not null auto_increment, type varchar(255) not null, title varchar(100) not null, description text not null, special varchar(255) not null, primary key (id) ) TYPE=InnoDB DEFAULT CHARSET=utf8; drop table if exists comments; create table comments ( id int not null auto_increment, author varchar(100) not null, content text not null, content_id int, primary key (id) ) TYPE=InnoDB DEFAULT CHARSET=utf8;
Version data entries
15 entries across 15 versions & 4 rubygems