When I define a column using sqlalchemy I use the float type with syntax like
from sqlalchemy import Column, Float
new_column_name = Column('new_column_name',Float,nullable=True)
This seems to default to a double in postgres, if I wanted a real, is this done through the precision input, or a different type?