added option do_migration_to_winix_fullmorm do the config (only temporarily)

if true then we make Item::do_migration() and exit
This commit is contained in:
2021-04-14 14:13:47 +02:00
parent 4b71530f4c
commit ccda2bc2fd
3 changed files with 28 additions and 17 deletions

View File

@@ -223,21 +223,23 @@ return !is_that_url;
}
void Item::do_migration(morm::ModelConnector * model_connector)
void Item::do_migration(morm::ModelConnector * model_connector, Log & log)
{
return;
///////
morm::Finder<Item> finder(model_connector);
std::list<Item> list = finder.select().where().eq(L"type", static_cast<int>(Item::dir)).eq(L"content_id", -1).get_list();
// for(Item & item : list)
// {
// item.item_content.set_save_mode(morm::Model::DO_INSERT_ON_SAVE);
// item.save();
// }
std::list<Item> list = finder.
select().
where().
eq(L"type", static_cast<int>(Item::dir)).
eq(L"content_id", -1).
get_list();
for(Item & item : list)
{
log << "updating item id: " << item.id << ", type: " << (int)item.type << ", url: " << item.url << ", subject: " << item.subject << logend << logsave;
item.item_content.set_save_mode(morm::Model::DO_INSERT_ON_SAVE);
item.save();
}
}
void Item::propagate_connector()