remove emojis from console

This commit is contained in:
Dobromir Popov
2025-10-25 16:35:08 +03:00
parent 5aa4925cff
commit b8f54e61fa
75 changed files with 828 additions and 828 deletions

View File

@@ -14,7 +14,7 @@ echo "📡 Testing connection to TimescaleDB..."
PGPASSWORD="market_data_secure_pass_2024" psql -h 192.168.0.10 -p 5432 -U market_user -d market_data -c "SELECT version();"
if [ $? -eq 0 ]; then
echo " Connection successful!"
echo " Connection successful!"
echo "🏗️ Creating database schema..."
@@ -22,16 +22,16 @@ if [ $? -eq 0 ]; then
PGPASSWORD="market_data_secure_pass_2024" psql -h 192.168.0.10 -p 5432 -U market_user -d market_data -f ../docker/init-scripts/01-init-timescaledb.sql
if [ $? -eq 0 ]; then
echo " Database schema initialized successfully!"
echo " Database schema initialized successfully!"
echo "📊 Verifying tables..."
PGPASSWORD="market_data_secure_pass_2024" psql -h 192.168.0.10 -p 5432 -U market_user -d market_data -c "\dt market_data.*"
else
echo " Schema initialization failed"
echo " Schema initialization failed"
exit 1
fi
else
echo " Cannot connect to database"
echo " Cannot connect to database"
exit 1
fi