I've a "static" table I need to import while doing initial migrations on my project.
I've a .sql file. It's a lot of data, > 35k records
My idea was to create table in a standard migration and then, with "something" execute the insert sql I already have in the separate file.
Is it possible? How?
You can add this in another migration file.