Forked from
Nils Tesdal / DatabaseTest
15 commits behind the upstream repository.
create_tables.sql 211 B
CREATE TABLE`person` (
`id` int(11) NOT NULL,
`navn` varchar(256) NOT NULL,
`alder` int(3) DEFAULT NULL,
`adresse` varchar(256) NOT NULL,
`bilde_base64` longtext
) ENGINE=InnoDB DEFAULT CHARSET=latin1;