This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- pgloader | |
+++ bootstrapped with Django migrations | |
@@ -1,20 +1,23 @@ | |
Table "bo_merchant_grouporder" | |
Column | Type | Collation | Nullable | Default | |
----------------------+--------------------------+-----------+----------+---------------------------------------------------- | |
- id | bigint | | not null | nextval('bo_merchant_grouporder_id_seq'::regclass) | |
- payment_id | bigint | | | | |
- garbage | bigint | | not null | | |
+ id | integer | | not null | nextval('bo_merchant_grouporder_id_seq'::regclass) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
commit b10f4f289d0b93741dabb916dbf01168c264ae74 | |
Merge: afb12ac1 596459af | |
Author: Brice Jaglin <[email protected]> | |
Date: Tue May 23 23:30:18 2023 +0200 | |
Merge remote-tracking branch 'organize-imports/master' into organize-imports | |
diff --combined CONTRIBUTING.md | |
index 3b3f5d92,00000000..2561dc95 | |
mode 100644,000000..100644 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
set -eu | |
shopt -s nullglob | |
readonly base_dir=/var/lib/docker/registry | |
readonly output_dir=$(mktemp -d -t trace-images-XXXX) | |
readonly jq=/usr/bin/jq | |
readonly repository_dir=$base_dir/repositories |