This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/migrations/041-birthdate-validation.sql

7 lines
111 B
SQL

-- Up
UPDATE profiles SET birthday = null WHERE birthday > '2008-12-13' OR birthday < '1900-01-01';
-- Down