Skip to content
Snippets Groups Projects
Commit 206beb7e authored by Johannes Zeiße's avatar Johannes Zeiße
Browse files

Updated

parent 29060241
No related branches found
No related tags found
No related merge requests found
CREATE TABLE if not exists researchReport (
`id` varchar(400) NOT NULL,
`author` varchar(400) NOT NULL,
`title` varchar(400) NOT NULL,
`method` varchar(10000) NOT NULL,
`research` varchar(10000) NOT NULL,
`question` varchar(10000) NOT NULL,
`concept` varchar(10000) NOT NULL,
`done` varchar(10000) NOT NULL,
`evaluation` varchar(10000) NOT NULL,
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE `researchReport` (
`reportID` varchar(400) NOT NULL,
`author` varchar(100) NOT NULL,
`title` varchar(400) NOT NULL,
`method` text NOT NULL,
`research` text NOT NULL,
`question` text NOT NULL,
`concept` text NOT NULL,
`do` text NOT NULL,
`evaluation` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
CREATE TABLE if not exists biblography (
`id` varchar(400) NOT NULL,
`source` varchar(400) NOT NULL,
)ENGINE=InnoDB DEFAULT CHARSET=utf8;
\ No newline at end of file
CREATE TABLE `biblography` (
`reportID` varchar(400) NOT NULL,
`source` varchar(400) NOT NULL
) 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