hippius 0.2.17__py3-none-any.whl → 0.2.18__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {hippius-0.2.17.dist-info → hippius-0.2.18.dist-info}/METADATA +1 -1
- {hippius-0.2.17.dist-info → hippius-0.2.18.dist-info}/RECORD +6 -6
- hippius_sdk/__init__.py +1 -1
- hippius_sdk/db/setup_database.sh +3 -1
- {hippius-0.2.17.dist-info → hippius-0.2.18.dist-info}/WHEEL +0 -0
- {hippius-0.2.17.dist-info → hippius-0.2.18.dist-info}/entry_points.txt +0 -0
@@ -1,4 +1,4 @@
|
|
1
|
-
hippius_sdk/__init__.py,sha256=
|
1
|
+
hippius_sdk/__init__.py,sha256=y1hFaAKG77GAKjps2c3Og69ZCn1anXFIa65PlYYj9Lg,1392
|
2
2
|
hippius_sdk/cli.py,sha256=aqKOYSBSWt7UhcpFt7wf9yIPJ3bznpsJ6ehOnuZ4usI,18235
|
3
3
|
hippius_sdk/cli_assets.py,sha256=V3MX63QTiex6mCp0VDXQJ7cagm5v1s4xtsu8c1O4G_k,371
|
4
4
|
hippius_sdk/cli_handlers.py,sha256=TQNE9os87gRzRKLEO-SIwhFnBtEFMiaSESv-Bu7omfo,128909
|
@@ -9,7 +9,7 @@ hippius_sdk/config.py,sha256=Hf_aUYzG9ylzqauA_ABUSSB5mBTYbp-VtB36VQt2XDw,21981
|
|
9
9
|
hippius_sdk/db/README.md,sha256=okDeI1qgkaZqXSlJ8L0xIE4UpuxO-qEGPIbXUvSHQjU,2030
|
10
10
|
hippius_sdk/db/env.db.template,sha256=_6hEC3IvkzCDOAzG1_yJUKRUfCTMciNaJUicZpMCat4,217
|
11
11
|
hippius_sdk/db/migrations/20241201000001_create_key_storage_tables.sql,sha256=mi4-6OofgsmJq3PTG4ew8VNucoeb7iejyqd-bado7Mc,1613
|
12
|
-
hippius_sdk/db/setup_database.sh,sha256=
|
12
|
+
hippius_sdk/db/setup_database.sh,sha256=bDeIiTnMuX0AYCdefAfEI1CyXho6A6kLzufsDZFSXpE,3118
|
13
13
|
hippius_sdk/db_utils.py,sha256=-x0rbN0as7Tn3PJPZBYCgreZe52FLH40ppA1TLxsg90,1851
|
14
14
|
hippius_sdk/errors.py,sha256=LScJJmawVAx7aRzqqQguYSkf9iazSjEQEBNlD_GXZ6Y,1589
|
15
15
|
hippius_sdk/ipfs.py,sha256=by45dH1c2IxzkfU7B9-ZRkI5gwEAxE0bUB9KUhszlL8,84460
|
@@ -17,7 +17,7 @@ hippius_sdk/ipfs_core.py,sha256=eOOgLoyP9mvwndnCjldnTc7z94ImYCXY3nm7JU3e_Mo,1267
|
|
17
17
|
hippius_sdk/key_storage.py,sha256=7q5SL3Ls6Ho0xEwYSBpdci7e-bBMJnUMz2j7ROEBSVc,8947
|
18
18
|
hippius_sdk/substrate.py,sha256=AqfQNl5Qv_s6roOESSdwleX0-VGyu5sh3m5-dYZp5ek,49079
|
19
19
|
hippius_sdk/utils.py,sha256=rJ611yvwKSyiBpYU3w-SuyQxoghMGU-ePuslrPv5H5g,7388
|
20
|
-
hippius-0.2.
|
21
|
-
hippius-0.2.
|
22
|
-
hippius-0.2.
|
23
|
-
hippius-0.2.
|
20
|
+
hippius-0.2.18.dist-info/METADATA,sha256=bR-7aqi5G5o34ajG969VMj_VL-vWPYQIznyrBEfKcBM,30088
|
21
|
+
hippius-0.2.18.dist-info/WHEEL,sha256=Zb28QaM1gQi8f4VCBhsUklF61CTlNYfs9YAZn-TOGFk,88
|
22
|
+
hippius-0.2.18.dist-info/entry_points.txt,sha256=bFAZjW3vndretf9-8s587jA2ebMVI7puhn_lVs8jPc8,149
|
23
|
+
hippius-0.2.18.dist-info/RECORD,,
|
hippius_sdk/__init__.py
CHANGED
hippius_sdk/db/setup_database.sh
CHANGED
@@ -47,7 +47,9 @@ PGPASSWORD=$DB_PASSWORD createdb -h $DB_HOST -p $DB_PORT -U $DB_USER $DB_NAME 2>
|
|
47
47
|
# Run migrations with dbmate
|
48
48
|
echo "🚀 Running database migrations..."
|
49
49
|
if command -v dbmate &> /dev/null; then
|
50
|
-
|
50
|
+
# Use explicit --migrations-dir flag to override any config
|
51
|
+
echo "📁 Using migrations from: $(pwd)/hippius_s3/sql/sdk_migrations"
|
52
|
+
dbmate --migrations-dir="hippius_s3/sql/sdk_migrations" up
|
51
53
|
echo "✅ Database migrations completed successfully!"
|
52
54
|
else
|
53
55
|
echo "❌ dbmate not found. Please install it first:"
|
File without changes
|
File without changes
|