chore: update file permissions for multiple files and add migration for club fee rules
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 54s

- Changed file permissions from 644 to 755 for various files in the mobile-app and mobile-app_legacy_rn_expo directories, ensuring executable permissions where necessary.
- Added a new SQL migration script to the backend to introduce missing columns for club billing and invoice settings in the clubs table, maintaining synchronization with the current Sequelize model.
This commit is contained in:
Torsten Schulz (local)
2026-07-17 11:51:24 +02:00
parent ac97332e6f
commit 5357dac9e1
956 changed files with 10 additions and 0 deletions

0
backend/migrations/20251111_add_member_images.sql Normal file → Executable file
View File

0
backend/migrations/20251213_add_tournament_stages.sql Normal file → Executable file
View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

View File

0
backend/migrations/20260420_create_billing_tables.sql Normal file → Executable file
View File

View File

View File

View File

0
backend/migrations/20260518_create_friendly_match.sql Normal file → Executable file
View File

0
backend/migrations/20260605_create_club_venue.sql Normal file → Executable file
View File

View File

@@ -0,0 +1,10 @@
-- Migration: Add missing club billing/settings columns used by the Club model.
-- This keeps upgraded installations in sync with the current Sequelize model.
ALTER TABLE clubs
ADD COLUMN IF NOT EXISTS fee_rules JSON NULL
COMMENT 'Manual contribution rules for common club member groups',
ADD COLUMN IF NOT EXISTS outgoing_invoice_prefix VARCHAR(24) NOT NULL DEFAULT 'RE',
ADD COLUMN IF NOT EXISTS outgoing_invoice_next_number INT NOT NULL DEFAULT 1,
ADD COLUMN IF NOT EXISTS incoming_invoice_prefix VARCHAR(24) NOT NULL DEFAULT 'EI',
ADD COLUMN IF NOT EXISTS incoming_invoice_next_number INT NOT NULL DEFAULT 1;

0
backend/migrations/TABELLEN_LISTE.md Normal file → Executable file
View File

View File

View File

0
backend/migrations/add_calendar_region_to_clubs.sql Normal file → Executable file
View File

View File

View File

View File

View File

View File

View File

0
backend/migrations/add_gender_to_tournament_class.sql Normal file → Executable file
View File

View File

0
backend/migrations/add_group_id_to_participants.sql Normal file → Executable file
View File

View File

View File

0
backend/migrations/add_match_result_fields.sql Normal file → Executable file
View File

0
backend/migrations/add_matches_tied_to_team.sql Normal file → Executable file
View File

View File

View File

View File

View File

View File

View File

0
backend/migrations/add_name_to_tournament.sql Normal file → Executable file
View File

0
backend/migrations/add_permissions_to_user_club.sql Normal file → Executable file
View File

0
backend/migrations/add_player_tracking_to_match.sql Normal file → Executable file
View File

View File

0
backend/migrations/add_season_to_teams.sql Normal file → Executable file
View File

0
backend/migrations/add_seeded_to_tournament_member.sql Normal file → Executable file
View File

0
backend/migrations/add_table_fields_to_team.sql Normal file → Executable file
View File

View File

0
backend/migrations/add_winning_sets_to_tournament.sql Normal file → Executable file
View File

0
backend/migrations/check_seasons_and_teams.sql Normal file → Executable file
View File

0
backend/migrations/check_seasons_and_teams_simple.sql Normal file → Executable file
View File

0
backend/migrations/create_api_log_table.sql Normal file → Executable file
View File

0
backend/migrations/create_calendar_events_table.sql Normal file → Executable file
View File

View File

View File

0
backend/migrations/create_http_page_fetch_log.sql Normal file → Executable file
View File

0
backend/migrations/create_my_tischtennis_fetch_log.sql Normal file → Executable file
View File

View File

0
backend/migrations/create_tournament_class_table.sql Normal file → Executable file
View File

0
backend/migrations/create_tournament_pairing_table.sql Normal file → Executable file
View File

View File

0
backend/migrations/create_training_group_tables.sql Normal file → Executable file
View File

0
backend/migrations/create_training_times_table.sql Normal file → Executable file
View File

0
backend/migrations/fix_seasons_and_teams.sql Normal file → Executable file
View File

0
backend/migrations/make_location_optional_in_match.sql Normal file → Executable file
View File

View File

View File

View File