Page MenuHomePhabricator

Change DataObjects to use column-specific inserts
Closed, ResolvedPublic

Description

Currently, table inserts are done like this:

{code}
INSERT INTO table VALUES (value, value, value);
{code}

This breaks if we add new columns to tables. Instead, use inserts like this:

{code}
INSERT INTO table (a, b, c) VALUES (value, value, value);
{code}

Created: Sun, 05 Oct 2014 23:52:44 GMT
Last Updated: Wed, 02 Dec 2015 17:22:44 GMT

Details

External Reference
HWUMC-71

Event Timeline

stwalkerster created this object with visibility "Public (No Login Required)".
stwalkerster created this object with edit policy "HWUMC (Project)".