Skip to content

Commit

Permalink
Change Resource_field to Resource_Field
Browse files Browse the repository at this point in the history
Update table name for capitalization
  • Loading branch information
JREastonMarks authored Mar 8, 2017
1 parent 9c57108 commit fb56d0c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ insert into Field(id, description, name, path, relationship, required) values(@c
insert into Field_permittedValues(Field_Id, permittedValues) values(@compactFieldId, 'TRUE');
insert into Field_permittedValues(Field_Id, permittedValues) values(@compactFieldId, 'FALSE');

insert into Resource_field(Resource_id, supportedSelectFields_id) values(@resourceId, @compactFieldId);
insert into Resource_Field(Resource_id, supportedSelectFields_id) values(@resourceId, @compactFieldId);


-- Insert the REMOVEPREPEND field
insert into Field(id, description, name, path, relationship, required) values(@removePrependFieldId, 'Removes the prepend of the column names', 'Remove Prepend', 'REMOVEPREPEND', null, 0);
insert into Field_permittedValues(Field_Id, permittedValues) values(@removePrependFieldId, 'TRUE');
insert into Field_permittedValues(Field_Id, permittedValues) values(@removePrependFieldId, 'FALSE');

insert into Resource_field(Resource_id, supportedSelectFields_id) values(@resourceId, @removePrependFieldId);
insert into Resource_Field(Resource_id, supportedSelectFields_id) values(@resourceId, @removePrependFieldId);

0 comments on commit fb56d0c

Please sign in to comment.