I have created the following table in sqlite3:
CREATE TABLE Test ( Id TEXT PRIMARY KEY NOT NULL, Count REAL );
But when I try to generate a model for this table, the schema.rb gives the following error:
Could not dump table "Test" because of following StandardError: Unknown type 'REAL' for column 'Count'
Is there another datatype I can use instead of real that will work with rails?