Research MER - IgorMing/tcc-research GitHub Wiki
Research (MER)
- Criação da tabela de usabilidade do Tinder
CREATE TABLE tinder_usage ( id integer primary key, description text );
- Inserção de dados pré cadastrados nesta tabela
INSERT INTO tinder_usage(id, description) VALUES (1, 'Uso'); INSERT INTO tinder_usage(id, description) VALUES (1, 'Não uso. Mas já usei'); INSERT INTO tinder_usage(id, description) VALUES (1, 'Nunca usei');
- Tabela da pesquisa
CREATE TABLE research ( id serial primary key, name text, surname text, tinder_usage integer references tinder_usage(id), tinder_highlight text, tinder_lowlight text, tcc_grade smallint, tcc_comments text, test bit );
- campo 'test' apenas para ter a possibilidade de input de dados teste,