aces / Loris

LORIS is a web-accessible database solution for longitudinal multi-site studies.
GNU General Public License v3.0
141 stars 173 forks source link

[26.0 Release] SQL patch archiving + release patch generation #9292

Closed ridz1208 closed 1 month ago

ridz1208 commented 1 month ago
mkdir SQL/Archive/26.0
git mv SQL/New_patches/*.sql SQL/Archive/26.0/
for n in SQL/Archive/26.0/*.sql; do echo $n; echo -e "\nSELECT 'Running: $n';\n" >> SQL/Release_patches/25.0_To_26.0_upgrade.sql; cat $n >> SQL/Release_patches/25.0_To_26.0_upgrade.sql; done;