Skip to content
Snippets Groups Projects
Commit ac83c711 authored by Axel's avatar Axel
Browse files

Merge branch 'development_master' of https://github.com/juliandehne/fltrail into development_master

parents 132c6da5 04ac79e6
No related branches found
No related tags found
No related merge requests found
CREATE TABLE if not exists researchReport ( CREATE TABLE `researchReport` (
`id` varchar(400) NOT NULL, `reportID` varchar(400) NOT NULL,
`author` varchar(400) NOT NULL, `author` varchar(100) NOT NULL,
`title` varchar(400) NOT NULL, `title` varchar(400) NOT NULL,
`method` varchar(10000) NOT NULL, `method` text NOT NULL,
`research` varchar(10000) NOT NULL, `research` text NOT NULL,
`question` varchar(10000) NOT NULL, `question` text NOT NULL,
`concept` varchar(10000) NOT NULL, `concept` text NOT NULL,
`done` varchar(10000) NOT NULL, `do` text NOT NULL,
`evaluation` varchar(10000) NOT NULL, `evaluation` text NOT NULL
)ENGINE=InnoDB DEFAULT CHARSET=utf8; ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE if not exists biblography (
`id` varchar(400) NOT NULL, CREATE TABLE `biblography` (
`source` varchar(400) NOT NULL, `reportID` varchar(400) NOT NULL,
)ENGINE=InnoDB DEFAULT CHARSET=utf8; `source` varchar(400) NOT NULL
\ No newline at end of file ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment