You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$this->whereAdd("ce_campaign_library_access.libraryId = '" . UserAccount::getActiveUserObj()->getHomeLibrary()->libraryId . "' OR NOT EXISTS (SELECT 1 FROM ce_campaign_library_access WHERE ce_campaign_library_access.campaignId = ce_campaign.id)");
Copy file name to clipboardexpand all lines: code/web/sys/DBMaintenance/community_engagement_updates.php
+14
Original file line number
Diff line number
Diff line change
@@ -296,5 +296,19 @@ function getCommunityEngagementUpdates() {
296
296
"INSERT INTO role_permissions(roleId, permissionId) VALUES ((SELECT roleId from roles where name='opacAdmin'), (SELECT id from permissions where name='Administer Community Module'))"
297
297
],
298
298
],
299
+
'add_date_of_birth_to_user' => [
300
+
'title' => 'Add Date Of Birth To User',
301
+
'description' => 'Add the date of birth to the user object',
302
+
'sql' => [
303
+
"ALTER TABLE user ADD COLUMN dateOfBirth DATE"
304
+
],
305
+
],
306
+
'add_user_age_range_to_campaign' => [
307
+
'title' => 'Add User Age Range To Campaign',
308
+
'description' => 'Add an ange range to the campaign',
0 commit comments