You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@ColumnInfo(name = "show_logo_on_download")
var showLogoOnDownload : Boolean = true,
As you can see, the default value is true in the code but not at the database level.
The corresponding json file generated show_logo_on_download INTEGER NOT NULL, ......
However the migration codegen generated ALTER TABLE table_name ADD show_logo_on_download INTEGER NOT NULL DEFAULT 0
Now because of this, in the code, I am expecting a true for showLogoOnDownload but now it's false everywhere because the database inserted 0 as the default value.
Now as a result I have write a migration code just so that I fill it explicitly with 1 i.e., true
Can you please look into this? This library has been extremely useful to me.
The text was updated successfully, but these errors were encountered:
Hello @ubarua123. Library doesn't take to account anything related to the Kotlin code, it only parses json files generated by the Room library. Please check whether generated json files actually has true as a default value. If there is no default value - than type-based (not field-based) default value will be taken.
I added this column in my entity class
As you can see, the default value is true in the code but not at the database level.
The corresponding json file generated
show_logo_on_download INTEGER NOT NULL, ......
However the migration codegen generated
ALTER TABLE table_name ADD show_logo_on_download INTEGER NOT NULL DEFAULT 0
Now because of this, in the code, I am expecting a
true
forshowLogoOnDownload
but now it'sfalse
everywhere because the database inserted0
as the default value.Now as a result I have write a migration code just so that I fill it explicitly with
1
i.e.,true
Can you please look into this? This library has been extremely useful to me.
The text was updated successfully, but these errors were encountered: