DDL schemas for Trading Platform: - User management - Authentication - Payments - Education - ML predictions - Trading data Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
14 lines
503 B
Bash
Executable File
14 lines
503 B
Bash
Executable File
#!/bin/bash
|
|
# ============================================================================
|
|
# DROP AND RECREATE DATABASE - Trading Platform
|
|
# ============================================================================
|
|
#
|
|
# Alias para carga limpia completa.
|
|
# Wrapper de create-database.sh con --drop-first
|
|
#
|
|
# ============================================================================
|
|
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
exec "$SCRIPT_DIR/create-database.sh" --drop-first "$@"
|