Aventuras/.gitattributes
Tony Frazier 6b08fec0fc
Fix CRLF Migrations (#162)
Fix migrations originally created on Windows systems with CRLF line endings
2026-02-22 15:46:59 -05:00

8 lines
415 B
Text

# Force LF line endings for all text files
* text=auto eol=lf
# Migrations SQL in particular must have uniform line endings in all scenarios.
# SQLx relies on consistent checksums (SHA384 hashes at the time of writing)
# to verify that migrations have not changed. This ensures that line endings
# stay consistent between platforms and systems regardless of autocrlf setup.
src-tauri/migrations/*.sql text eol=lf