Skip to content
This repository was archived by the owner on Nov 24, 2025. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
d05f7a9
Squash update_interfaces_multiple_routers
ocket8888 Apr 28, 2022
49f16df
Squash remove_tm_path
ocket8888 Apr 28, 2022
49998c3
Squash change_mtu_check_interfaces
ocket8888 Apr 28, 2022
e8dff3d
Squash cdn_notification
ocket8888 Apr 28, 2022
91c6aea
Squash add_async_status_table
ocket8888 Apr 28, 2022
4a2774c
Squash server_capability_update_cascade
ocket8888 Apr 28, 2022
afecd67
Squash cdn_notifications_multiple
ocket8888 Apr 28, 2022
b9c3c56
Squash generate_uuid_for_xmpp_id_where_empty
ocket8888 Apr 28, 2022
5a33b76
Squash dsrs_originals
ocket8888 Apr 28, 2022
4b2154a
Squash add_cdn_lock
ocket8888 Apr 28, 2022
be34e63
Squash ds_tls_versions
ocket8888 Apr 28, 2022
0d7dccd
Squash remove_ds_mso_alg
ocket8888 Apr 28, 2022
b99f75c
Squash add_tm_user_last_authenticated
ocket8888 Apr 28, 2022
6608f60
Squash fix_indices
ocket8888 Apr 28, 2022
cfcdda2
Squash le_dns_challenge_xml_id
ocket8888 Apr 28, 2022
4c981ba
Squash roles_and_permissions
ocket8888 Apr 28, 2022
d83756a
Squash no_null_username
ocket8888 Apr 28, 2022
77592a0
Squash add_job_start_time_idx
ocket8888 Apr 28, 2022
06bb4b0
Squash remove_user_role
ocket8888 Apr 28, 2022
d60b657
Squash add_permissions
ocket8888 Apr 28, 2022
71de1a2
Squash refetch
ocket8888 Apr 28, 2022
dcb8046
Squash admin_all_permission
ocket8888 Apr 28, 2022
efa1b22
Squash add_secure_param_read_permission
ocket8888 Apr 28, 2022
3ac16cd
Squash remove_null_last_authenticated
ocket8888 Apr 28, 2022
42e1db2
Squash add_expiration_and_provider_to_sslkeys
ocket8888 Apr 28, 2022
29bf168
Squash set_provider_not_null
ocket8888 Apr 28, 2022
c1f609b
Fix cdn_notification primary key constraint name
ocket8888 May 17, 2022
32b5d91
Fix sslkey table column order
ocket8888 May 17, 2022
7e22161
Fix incorrect column owner for cdn_notification_id_seq
ocket8888 May 17, 2022
f632881
Fix incorrect cdn_notification table owner
ocket8888 May 18, 2022
068c2bf
re-add now-unseeded Roles
ocket8888 May 20, 2022
93c98cb
Fix erroneously dropping 'NOT NULL' constraint
ocket8888 May 20, 2022
6766c24
Squash init and trafficvault init
ocket8888 May 20, 2022
52c19f7
Fix attempting to run migrations when there are no migrations
ocket8888 May 24, 2022
a46d032
unexport things that don't need to be exported
ocket8888 May 24, 2022
29c6c21
Wrap errors, compare with errors.Is instead of ==, actually check errors
ocket8888 May 24, 2022
faea0e4
Ensure terminating newlines from subprocess output
ocket8888 May 24, 2022
9b30072
print errors to stderr
ocket8888 May 24, 2022
e0d69da
Don't use a print function that shouldn't be used
ocket8888 May 24, 2022
8c15778
Simplify
ocket8888 May 24, 2022
e73991c
Fix comments not ending with a period
ocket8888 May 24, 2022
29ab8d5
Fix segmentation fault in admin
ocket8888 Jun 1, 2022
ef6a1a9
Fix incorrect initial db version in db tests
ocket8888 Jun 1, 2022
95a5198
Fix checking for wrong timestamp to find out if db is empty
ocket8888 Jun 1, 2022
0cde9c3
Remove duplicated script content
ocket8888 Jun 2, 2022
d5d43f9
Add back missing Permissions
ocket8888 Jun 2, 2022
b56b11f
add back missing "portal" user Permissions
ocket8888 Jun 2, 2022
6aafee0
Fix extra Permissions given to 'portal' users
ocket8888 Jun 14, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions .github/actions/todb-tests/entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,10 @@ CODE=0;
migration_dirs=(traffic_ops/app/db/migrations traffic_ops/app/db/trafficvault/migrations);

for migration_dir in ${migration_dirs[@]}; do
if ! [[ -d "$migration_dir" ]]; then
echo "No migrations exist at $migration_dir - skipping!" >&2;
continue;
fi
pushd $migration_dir;

# Ensure proper order
Expand Down
Loading