sdispater / orator

The Orator ORM provides a simple yet beautiful ActiveRecord implementation.
https://orator-orm.com
MIT License
1.43k stars 173 forks source link

Make SQLitePlatform support float type #384

Open mantelllo opened 4 years ago

mantelllo commented 4 years ago

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

[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.