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
-- if the database has jsonb datatypes and the configuration does not have add_jsonb_to_schema enabled, then warn the user
193
193
when (resJsonbInSchema &¬ isJsonBInSchemaConfig) $do
194
-
liftIO $ logWarning trce "The database has jsonb datatypes, but the configuration does not have add_jsonb_to_schema enabled. The all jsonb datatypes will be put back which can take time."
194
+
liftIO $ logWarning trce "Removing jsonb datatypes from the database. This can take time."
195
195
liftIO $ runDisableJsonbInSchema syncEnv
196
196
197
197
-- if the database doesn't have jsonb datatypes and the configuration does have add_jsonb_to_schema enabled, then add jsonb datatypes to the database
198
-
when (not resJsonbInSchema && isJsonBInSchemaConfig) $ liftIO $ runEnableJsonbInSchema syncEnv
198
+
when (not resJsonbInSchema && isJsonBInSchemaConfig) $do
199
+
liftIO $ logWarning trce "Adding jsonb datatypes to the database. This can take time."
0 commit comments