Skip to content
Snippets Groups Projects
Commit ed5adee5 authored by shpl19's avatar shpl19
Browse files

Issue #20: Changes to tables to account for new status tag.

parent 8d193cdb
Branches issue/20
No related tags found
No related merge requests found
Pipeline #24795 passed
......@@ -2,7 +2,8 @@ CREATE TABLE form (
id SERIAL PRIMARY KEY,
title TEXT,
description TEXT,
times BOOLEAN
times BOOLEAN,
status BOOLEAN
);
CREATE TABLE input (
......
id;title;description;times
1;Form Title 1;Form Description 1;f
2;Form Title 2;Form Description 2;f
3;Form Title 3;Form Description 3;f
id;title;description;times;status
1;Form Title 1;Form Description 1;f;t
2;Form Title 2;Form Description 2;f;t
3;Form Title 3;Form Description 3;f;t
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment