Skip to content

Optimized migrations for performance

Vojtěch Svoboda requested to merge quanti/migrations-optimization into dev

Created by: iarro

Migrations are slow due to many 'alter table' queries, which can be a part of 'create table' statement instead. Typically, 'add constraint' query. Move these queries to 'create table' statements improves time of migrations significantly.

Merge request reports

Loading