* Update local_user.theme type to text
* fix default value
* Undo auto generate changes
password_encrypted -> Text,
email -> Nullable<Text>,
show_nsfw -> Bool,
- #[max_length = 20]
- theme -> Varchar,
+ theme -> Text,
default_sort_type -> SortTypeEnum,
default_listing_type -> ListingTypeEnum,
#[max_length = 20]
--- /dev/null
+alter table only local_user alter column theme TYPE character varying(20);
+alter table only local_user alter column theme set default 'browser'::character varying;
\ No newline at end of file
--- /dev/null
+alter table only local_user alter column theme type text;
+alter table only local_user alter column theme set default 'browser'::text;