'integer'
);
+INSERT INTO config.org_unit_setting_type (name, label, grp, description, datatype)
+VALUES (
+ 'circ.curbside.disable_patron_input',
+ oils_i18n_gettext('circ.curbside.disable_patron_input',
+ 'When enabled, patrons cannot use the My Account interface to select curbside pickup times',
+ 'coust', 'label'),
+ 'circ',
+ oils_i18n_gettext('circ.curbside.disable_patron_input',
+ 'When enabled, patrons cannot use the My Account interface to select curbside pickup times',
+ 'coust', 'description'),
+ 'bool'
+);
+
INSERT INTO actor.org_unit_setting (org_unit, name, value)
SELECT id, 'circ.curbside', 'false' FROM actor.org_unit WHERE parent_ou IS NULL
UNION