summaryrefslogtreecommitdiff
path: root/prepopulate.sql
diff options
context:
space:
mode:
authorGravatar Benjamin Barenblat <benjamin@barenblat.name>2016-08-18 15:45:09 -0400
committerGravatar Benjamin Barenblat <benjamin@barenblat.name>2016-08-18 15:45:09 -0400
commit37334313f0e049c31e12e1cf841de6089dfa6ed2 (patch)
tree4dd41348d7e205e6486d52355f9502b8b97c7d6c /prepopulate.sql
parent65eb70a72630062ac543acd0121a3db12725ff32 (diff)
Set checkbox state based on database
Diffstat (limited to 'prepopulate.sql')
-rw-r--r--prepopulate.sql10
1 files changed, 5 insertions, 5 deletions
diff --git a/prepopulate.sql b/prepopulate.sql
index 4d3437b..f50d17f 100644
--- a/prepopulate.sql
+++ b/prepopulate.sql
@@ -12,9 +12,9 @@
-- License for the specific language governing permissions and limitations under
-- the License.
-INSERT INTO uw_Main_nextAction (uw_nam)
+INSERT INTO uw_Main_nextAction (uw_nam, uw_done)
VALUES
- ("Print cover for TPS report"),
- ("Collect information for TPS report"),
- ("Generate charts for TPS report"),
- ("Lorem ipsum dolor sit amet");
+ ("Print cover for TPS report", 1),
+ ("Collect information for TPS report", 0),
+ ("Generate charts for TPS report", 0),
+ ("Lorem ipsum dolor sit amet", 0);