Remove on-premise Supabase test code

Remove code related to on-premise Supabase testing.
This commit is contained in:
gpt-engineer-app[bot]
2025-03-15 22:35:44 +00:00
parent af52ec897f
commit 439653fa2f
25 changed files with 8 additions and 1080 deletions

View File

@@ -13,7 +13,7 @@ export const createRequiredTables = async (): Promise<{ success: boolean; messag
// 테이블 상태 확인
const tablesStatus = await checkTablesStatus();
if (tablesStatus.transactions && tablesStatus.budgets) {
if (tablesStatus.transactions && tablesStatus.budgets && tablesStatus.category_budgets) {
return {
success: true,
message: '필요한 테이블이 이미 존재합니다.'
@@ -21,8 +21,8 @@ export const createRequiredTables = async (): Promise<{ success: boolean; messag
}
return {
success: true,
message: '테이블이 성공적으로 생성되었습니다.'
success: false,
message: '일부 필요한 테이블이 없습니다. Supabase 대시보드에서 확인해주세요.'
};
} catch (error: any) {
console.error('테이블 확인 중 오류 발생:', error);