State: database with table and many columns (including double)
Action: run migration that removes a column (in my case - not double)
Result: migration failes with
[AttributeError]
'SQLitePlatform' object has no attribute 'get_float_type_declaration_sql'
After I resolve the SQLitePlatform.get_float_type_declaration_sql, the migration runs just fine.
DB: sqlite.
State: database with table and many columns (including double) Action: run migration that removes a column (in my case - not double) Result: migration failes with
After I resolve the SQLitePlatform.get_float_type_declaration_sql, the migration runs just fine.