fixed cache Refactoring from app router to page router Refactoring from app router to page router Add authentication with JWT base ui done protect the dashboard added transitions styling type trick added cleanup Add enable-disable logic add transactional emails Improvements on delay and frontend added description on select implement auth with magic link migrate to mariadb webhook signature working Adding async processing with queues Implemented webhook reply functionality Add son execution logs update status logic Add recent activity monitoring to sons show son performance in dashboard add readme implement listmonk connector listmonk-connector-v1 Create CODE_OF_CONDUCT.md Create LICENSE
12 lines
296 B
Bash
Executable file
12 lines
296 B
Bash
Executable file
#!/bin/bash
|
|
|
|
# Check if a migration name was provided
|
|
if [ $# -eq 0 ]; then
|
|
echo "No migration name provided. Usage: ./create_migration.sh <migration_name>"
|
|
exit 1
|
|
fi
|
|
|
|
# Create the migration
|
|
migrate create -ext sql -dir database/migrations -seq $1
|
|
|
|
echo "Migration created successfully."
|