mirror of
https://github.com/ruvnet/RuVector.git
synced 2026-05-25 15:03:46 +00:00
Major additions: - Complete Next.js studio application with 1600+ components - Docker support (Dockerfile.combined, docker-compose.yml) - GCP deployment documentation and benchmarks - SQL benchmark scripts for performance testing - Sentry integration for monitoring - Comprehensive test suite and mocks Studio features: - Dashboard and admin interfaces - Data visualization components - Authentication and user management - API integration with RuVector backend - Static data and public assets 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
52 lines
1.7 KiB
TypeScript
52 lines
1.7 KiB
TypeScript
import { DatabaseUpgradeProgress } from '@supabase/shared-types/out/events'
|
|
|
|
export const DATABASE_UPGRADE_MESSAGES = [
|
|
{
|
|
key: DatabaseUpgradeProgress.Started,
|
|
initial: 'Prepare new server',
|
|
progress: 'Preparing new server',
|
|
completed: 'Prepared new server',
|
|
},
|
|
{
|
|
key: DatabaseUpgradeProgress.LaunchedUpgradedInstance,
|
|
initial: 'Prepare new server for migration',
|
|
progress: 'Preparing new server for migration',
|
|
completed: 'New server ready for migration',
|
|
},
|
|
{
|
|
key: DatabaseUpgradeProgress.DetachedVolumeFromUpgradedInstance,
|
|
initial: 'Execute pre-upgrade checks',
|
|
progress: 'Executing pre-upgrade checks',
|
|
completed: 'Completed pre-upgrade checks',
|
|
},
|
|
{
|
|
key: DatabaseUpgradeProgress.AttachedVolumeToOriginalInstance,
|
|
initial: 'Shut down API services',
|
|
progress: 'Shutting down API services',
|
|
completed: 'Completed shutting down API services',
|
|
},
|
|
{
|
|
key: DatabaseUpgradeProgress.InitiatedDataUpgrade,
|
|
initial: 'Migrate to new database',
|
|
progress: 'Migrating to new database',
|
|
completed: 'Completed migration to new database',
|
|
},
|
|
{
|
|
key: DatabaseUpgradeProgress.CompletedDataUpgrade,
|
|
initial: 'Execute database migration',
|
|
progress: 'Executing database migration',
|
|
completed: 'Completed database migration',
|
|
},
|
|
{
|
|
key: DatabaseUpgradeProgress.DetachedVolumeFromOriginalInstance,
|
|
initial: 'Update database extensions',
|
|
progress: 'Updating database extensions',
|
|
completed: 'Updated database extensions',
|
|
},
|
|
{
|
|
key: DatabaseUpgradeProgress.AttachedVolumeToUpgradedInstance,
|
|
initial: 'Optimize database',
|
|
progress: 'Optimizing database',
|
|
completed: 'Completed optimization of database',
|
|
},
|
|
]
|