Re: --fake-initial does not follow PostgreSQL search_path schema list

2019-06-11 Thread Axel Rau
This worked with Django 2.1. Seems to be a bug in 2.2 Axel > Am 08.06.2019 um 21:50 schrieb Axel Rau : > > The database user sets a search_path to a,b > In schema b exists a set of tables corresponding to models and > inital_migration. > Running > migrate --fake-initial app

--fake-initial does not follow PostgreSQL search_path schema list

2019-06-08 Thread Axel Rau
The database user sets a search_path to a,b In schema b exists a set of tables corresponding to models and inital_migration. Running migrate --fake-initial app inital_migration recreates all table in schema a. Documentation says "--fake-initial does nothing if tables already exist. Is