1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747
|
// copyright (C) 2002, 2003 graydon hoare <graydon@pobox.com>
// all rights reserved.
// licensed to the public under the terms of the GNU GPL (>= 2)
// see the file COPYING for details
#include <algorithm>
#include <string>
#include <vector>
#include <locale>
#include <stdexcept>
#include <iostream>
#include <boost/tokenizer.hpp>
#include <sqlite3.h>
#include "schema_migration.hh"
#include "cryptopp/filters.h"
#include "cryptopp/sha.h"
#include "cryptopp/hex.h"
// this file knows how to migrate schema databases. the general strategy is
// to hash each schema we ever use, and make a list of the SQL commands
// required to get from one hash value to the next. when you do a
// migration, the migrator locates your current db's state on the list and
// then runs all the migration functions between that point and the target
// of the migration.
// you will notice a little bit of duplicated code between here and
// transforms.cc / database.cc; this was originally to facilitate inclusion of
// migration capability into the depot code, which did not link against those
// objects. the depot code is gone, but this isn't the sort of code that
// should ever be touched after being written, so the duplication remains.
using namespace std;
typedef boost::tokenizer<boost::char_separator<char> > tokenizer;
extern "C" {
// some wrappers to ease migration
int sqlite3_exec_printf(sqlite3*,const char *sqlFormat,sqlite3_callback,
void *,char **errmsg,...);
const char *sqlite3_value_text_s(sqlite3_value *v);
}
static string
lowercase(string const & in)
{
size_t const sz = in.size();
char buf[sz];
in.copy(buf, sz);
use_facet< ctype<char> >(locale::locale()).tolower(buf, buf+sz);
return string(buf,sz);
}
static void
massage_sql_tokens(string const & in,
string & out)
{
boost::char_separator<char> sep(" \r\n\t", "(),;");
tokenizer tokens(in, sep);
out.clear();
for (tokenizer::iterator i = tokens.begin();
i != tokens.end(); ++i)
{
if (i != tokens.begin())
out += " ";
out += *i;
}
}
static void
calculate_id(string const & in,
string & ident)
{
CryptoPP::SHA hash;
unsigned int const sz = 2 * CryptoPP::SHA::DIGESTSIZE;
char buffer[sz];
CryptoPP::StringSource
s(in, true, new CryptoPP::HashFilter
(hash, new CryptoPP::HexEncoder
(new CryptoPP::ArraySink(reinterpret_cast<byte *>(buffer), sz))));
ident = lowercase(string(buffer, sz));
}
struct
is_ws
{
bool operator()(char c) const
{
return c == '\r' || c == '\n' || c == '\t' || c == ' ';
}
};
static void
sqlite_sha1_fn(sqlite3_context *f, int nargs, sqlite3_value ** args)
{
string tmp, sha;
if (nargs <= 1)
{
sqlite3_result_error(f, "need at least 1 arg to sha1()", -1);
return;
}
if (nargs == 1)
{
string s = (sqlite3_value_text_s(args[0]));
s.erase(remove_if(s.begin(), s.end(), is_ws()),s.end());
tmp = s;
}
else
{
string sep = string(sqlite3_value_text_s(args[0]));
string s = (sqlite3_value_text_s(args[1]));
s.erase(remove_if(s.begin(), s.end(), is_ws()),s.end());
tmp = s;
for (int i = 2; i < nargs; ++i)
{
s = string(sqlite3_value_text_s(args[i]));
s.erase(remove_if(s.begin(), s.end(), is_ws()),s.end());
tmp += sep + s;
}
}
calculate_id(tmp, sha);
sqlite3_result_text(f,sha.c_str(),sha.size(),SQLITE_TRANSIENT);
}
int
append_sql_stmt(void * vp,
int ncols,
char ** values,
char ** colnames)
{
if (ncols != 1)
return 1;
if (vp == NULL)
return 1;
if (values == NULL)
return 1;
if (values[0] == NULL)
return 1;
string *str = reinterpret_cast<string *>(vp);
str->append(values[0]);
str->append("\n");
return 0;
}
void
calculate_schema_id(sqlite3 *sql, string & id)
{
id.clear();
string tmp, tmp2;
int res = sqlite3_exec_printf(sql,
"SELECT sql FROM sqlite_master "
"WHERE type = 'table' "
"ORDER BY name",
&append_sql_stmt, &tmp, NULL);
if (res != SQLITE_OK)
{
sqlite3_exec(sql, "ROLLBACK", NULL, NULL, NULL);
throw runtime_error("failure extracting schema from sqlite_master");
}
massage_sql_tokens(tmp, tmp2);
calculate_id(tmp2, id);
}
typedef bool (*migrator_cb)(sqlite3 *, char **);
struct
migrator
{
vector< pair<string,migrator_cb> > migration_events;
void add(string schema_id, migrator_cb cb)
{
migration_events.push_back(make_pair(schema_id, cb));
}
void migrate(sqlite3 *sql, string target_id)
{
string init;
calculate_schema_id(sql, init);
if (sql == NULL)
throw runtime_error("NULL sqlite object given to migrate");
if (sqlite3_create_function(sql, "sha1", -1, SQLITE_UTF8, NULL,
&sqlite_sha1_fn, NULL, NULL))
throw runtime_error("error registering sha1 function with sqlite");
bool migrating = false;
for (vector< pair<string, migrator_cb> >::const_iterator i = migration_events.begin();
i != migration_events.end(); ++i)
{
if (i->first == init)
{
if (sqlite3_exec(sql, "BEGIN", NULL, NULL, NULL) != SQLITE_OK)
throw runtime_error("error at transaction BEGIN statement");
migrating = true;
}
if (migrating)
{
// confirm that we are where we ought to be
string curr;
char *errmsg = NULL;
calculate_schema_id(sql, curr);
if (curr != i->first)
{
if (migrating)
sqlite3_exec(sql, "ROLLBACK", NULL, NULL, NULL);
throw runtime_error("mismatched pre-state to migration step");
}
if (i->second == NULL)
{
sqlite3_exec(sql, "ROLLBACK", NULL, NULL, NULL);
throw runtime_error("NULL migration specifier");
}
// do this migration step
else if (! i->second(sql, &errmsg))
{
string e("migration step failed");
if (errmsg != NULL)
e.append(string(": ") + errmsg);
sqlite3_exec(sql, "ROLLBACK", NULL, NULL, NULL);
throw runtime_error(e);
}
}
}
// confirm that our target schema was met
if (migrating)
{
string curr;
calculate_schema_id(sql, curr);
if (curr != target_id)
{
sqlite3_exec(sql, "ROLLBACK", NULL, NULL, NULL);
throw runtime_error("mismatched result of migration, "
"got " + curr + ", wanted " + target_id);
}
if (sqlite3_exec(sql, "COMMIT", NULL, NULL, NULL) != SQLITE_OK)
{
throw runtime_error("failure on COMMIT");
}
}
}
};
static bool move_table(sqlite3 *sql, char **errmsg,
char const * srcname,
char const * dstname,
char const * dstschema)
{
int res =
sqlite3_exec_printf(sql, "CREATE TABLE %s %s", NULL, NULL, errmsg,
dstname, dstschema);
if (res != SQLITE_OK)
return false;
res =
sqlite3_exec_printf(sql, "INSERT INTO %s SELECT * FROM %s",
NULL, NULL, errmsg, dstname, srcname);
if (res != SQLITE_OK)
return false;
res =
sqlite3_exec_printf(sql, "DROP TABLE %s",
NULL, NULL, errmsg, srcname);
if (res != SQLITE_OK)
return false;
return true;
}
static bool
migrate_client_merge_url_and_group(sqlite3 * sql,
char ** errmsg)
{
// migrate the posting_queue table
if (!move_table(sql, errmsg,
"posting_queue",
"tmp",
"("
"url not null,"
"groupname not null,"
"content not null"
")"))
return false;
int res = sqlite3_exec_printf(sql, "CREATE TABLE posting_queue "
"("
"url not null, -- URL we are going to send this to\n"
"content not null -- the packets we're going to send\n"
")", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "INSERT INTO posting_queue "
"SELECT "
"(url || '/' || groupname), "
"content "
"FROM tmp", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "DROP TABLE tmp", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
// migrate the incoming_queue table
if (!move_table(sql, errmsg,
"incoming_queue",
"tmp",
"("
"url not null,"
"groupname not null,"
"content not null"
")"))
return false;
res = sqlite3_exec_printf(sql, "CREATE TABLE incoming_queue "
"("
"url not null, -- URL we got this bundle from\n"
"content not null -- the packets we're going to read\n"
")", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "INSERT INTO incoming_queue "
"SELECT "
"(url || '/' || groupname), "
"content "
"FROM tmp", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "DROP TABLE tmp", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
// migrate the sequence_numbers table
if (!move_table(sql, errmsg,
"sequence_numbers",
"tmp",
"("
"url not null,"
"groupname not null,"
"major not null,"
"minor not null,"
"unique(url, groupname)"
")"
))
return false;
res = sqlite3_exec_printf(sql, "CREATE TABLE sequence_numbers "
"("
"url primary key, -- URL to read from\n"
"major not null, -- 0 in news servers, may be higher in depots\n"
"minor not null -- last article / packet sequence number we got\n"
")", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "INSERT INTO sequence_numbers "
"SELECT "
"(url || '/' || groupname), "
"major, "
"minor "
"FROM tmp", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "DROP TABLE tmp", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
// migrate the netserver_manifests table
if (!move_table(sql, errmsg,
"netserver_manifests",
"tmp",
"("
"url not null,"
"groupname not null,"
"manifest not null,"
"unique(url, groupname, manifest)"
")"
))
return false;
res = sqlite3_exec_printf(sql, "CREATE TABLE netserver_manifests "
"("
"url not null, -- url of some server\n"
"manifest not null, -- manifest which exists on url\n"
"unique(url, manifest)"
")", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "INSERT INTO netserver_manifests "
"SELECT "
"(url || '/' || groupname), "
"manifest "
"FROM tmp", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "DROP TABLE tmp", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
return true;
}
static bool
migrate_client_add_hashes_and_merkle_trees(sqlite3 * sql,
char ** errmsg)
{
// add the column to manifest_certs
if (!move_table(sql, errmsg,
"manifest_certs",
"tmp",
"("
"id not null,"
"name not null,"
"value not null,"
"keypair not null,"
"signature not null,"
"unique(name, id, value, keypair, signature)"
")"))
return false;
int res = sqlite3_exec_printf(sql, "CREATE TABLE manifest_certs\n"
"(\n"
"hash not null unique, -- hash of remaining fields separated by \":\"\n"
"id not null, -- joins with manifests.id or manifest_deltas.id\n"
"name not null, -- opaque string chosen by user\n"
"value not null, -- opaque blob\n"
"keypair not null, -- joins with public_keys.id\n"
"signature not null, -- RSA/SHA1 signature of \"[name@id:val]\"\n"
"unique(name, id, value, keypair, signature)\n"
")", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "INSERT INTO manifest_certs "
"SELECT "
"sha1(':', id, name, value, keypair, signature), "
"id, name, value, keypair, signature "
"FROM tmp", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "DROP TABLE tmp", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
// add the column to file_certs
if (!move_table(sql, errmsg,
"file_certs",
"tmp",
"("
"id not null,"
"name not null,"
"value not null,"
"keypair not null,"
"signature not null,"
"unique(name, id, value, keypair, signature)"
")"))
return false;
res = sqlite3_exec_printf(sql, "CREATE TABLE file_certs\n"
"(\n"
"hash not null unique, -- hash of remaining fields separated by \":\"\n"
"id not null, -- joins with files.id or file_deltas.id\n"
"name not null, -- opaque string chosen by user\n"
"value not null, -- opaque blob\n"
"keypair not null, -- joins with public_keys.id\n"
"signature not null, -- RSA/SHA1 signature of \"[name@id:val]\"\n"
"unique(name, id, value, keypair, signature)\n"
")", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "INSERT INTO file_certs "
"SELECT "
"sha1(':', id, name, value, keypair, signature), "
"id, name, value, keypair, signature "
"FROM tmp", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "DROP TABLE tmp", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
// add the column to public_keys
if (!move_table(sql, errmsg,
"public_keys",
"tmp",
"("
"id primary key,"
"keydata not null"
")"))
return false;
res = sqlite3_exec_printf(sql, "CREATE TABLE public_keys\n"
"(\n"
"hash not null unique, -- hash of remaining fields separated by \":\"\n"
"id primary key, -- key identifier chosen by user\n"
"keydata not null -- RSA public params\n"
")", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "INSERT INTO public_keys "
"SELECT "
"sha1(':', id, keydata), "
"id, keydata "
"FROM tmp", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "DROP TABLE tmp", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
// add the column to private_keys
if (!move_table(sql, errmsg,
"private_keys",
"tmp",
"("
"id primary key,"
"keydata not null"
")"))
return false;
res = sqlite3_exec_printf(sql, "CREATE TABLE private_keys\n"
"(\n"
"hash not null unique, -- hash of remaining fields separated by \":\"\n"
"id primary key, -- as in public_keys (same identifiers, in fact)\n"
"keydata not null -- encrypted RSA private params\n"
")", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "INSERT INTO private_keys "
"SELECT "
"sha1(':', id, keydata), "
"id, keydata "
"FROM tmp", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "DROP TABLE tmp", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
// add the merkle tree stuff
res = sqlite3_exec_printf(sql,
"CREATE TABLE merkle_nodes\n"
"(\n"
"type not null, -- \"key\", \"mcert\", \"fcert\", \"manifest\"\n"
"collection not null, -- name chosen by user\n"
"level not null, -- tree level this prefix encodes\n"
"prefix not null, -- label identifying node in tree\n"
"body not null, -- binary, base64'ed node contents\n"
"unique(type, collection, level, prefix)\n"
")", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
return true;
}
static bool
migrate_client_to_revisions(sqlite3 * sql,
char ** errmsg)
{
int res;
res = sqlite3_exec_printf(sql, "DROP TABLE schema_version;", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "DROP TABLE posting_queue;", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "DROP TABLE incoming_queue;", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "DROP TABLE sequence_numbers;", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "DROP TABLE file_certs;", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "DROP TABLE netserver_manifests;", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "DROP TABLE merkle_nodes;", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql,
"CREATE TABLE merkle_nodes\n"
"(\n"
"type not null, -- \"key\", \"mcert\", \"fcert\", \"rcert\"\n"
"collection not null, -- name chosen by user\n"
"level not null, -- tree level this prefix encodes\n"
"prefix not null, -- label identifying node in tree\n"
"body not null, -- binary, base64'ed node contents\n"
"unique(type, collection, level, prefix)\n"
")", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "CREATE TABLE revision_certs\n"
"(\n"
"hash not null unique, -- hash of remaining fields separated by \":\"\n"
"id not null, -- joins with revisions.id\n"
"name not null, -- opaque string chosen by user\n"
"value not null, -- opaque blob\n"
"keypair not null, -- joins with public_keys.id\n"
"signature not null, -- RSA/SHA1 signature of \"[name@id:val]\"\n"
"unique(name, id, value, keypair, signature)\n"
")", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "CREATE TABLE revisions\n"
"(\n"
"id primary key, -- SHA1(text of revision)\n"
"data not null -- compressed, encoded contents of a revision\n"
")", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql, "CREATE TABLE revision_ancestry\n"
"(\n"
"parent not null, -- joins with revisions.id\n"
"child not null, -- joins with revisions.id\n"
"unique(parent, child)\n"
")", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
return true;
}
static bool
migrate_client_to_epochs(sqlite3 * sql,
char ** errmsg)
{
int res;
res = sqlite3_exec_printf(sql, "DROP TABLE merkle_nodes;", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
res = sqlite3_exec_printf(sql,
"CREATE TABLE branch_epochs\n"
"(\n"
"hash not null unique, -- hash of remaining fields separated by \":\"\n"
"branch not null unique, -- joins with revision_certs.value\n"
"epoch not null -- random hex-encoded id\n"
");", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
return true;
}
static bool
migrate_client_to_vars(sqlite3 * sql,
char ** errmsg)
{
int res;
res = sqlite3_exec_printf(sql,
"CREATE TABLE db_vars\n"
"(\n"
"domain not null, -- scope of application of a var\n"
"name not null, -- var key\n"
"value not null, -- var value\n"
"unique(domain, name)\n"
");", NULL, NULL, errmsg);
if (res != SQLITE_OK)
return false;
return true;
}
void
migrate_monotone_schema(sqlite3 *sql)
{
migrator m;
m.add("edb5fa6cef65bcb7d0c612023d267c3aeaa1e57a",
&migrate_client_merge_url_and_group);
m.add("f042f3c4d0a4f98f6658cbaf603d376acf88ff4b",
&migrate_client_add_hashes_and_merkle_trees);
m.add("8929e54f40bf4d3b4aea8b037d2c9263e82abdf4",
&migrate_client_to_revisions);
m.add("c1e86588e11ad07fa53e5d294edc043ce1d4005a",
&migrate_client_to_epochs);
m.add("40369a7bda66463c5785d160819ab6398b9d44f4",
&migrate_client_to_vars);
// IMPORTANT: whenever you modify this to add a new schema version, you must
// also add a new migration test for the new schema version. See
// tests/t_migrate_schema.at for details.
m.migrate(sql, "e372b508bea9b991816d1c74680f7ae10d2a6d94");
if (sqlite3_exec(sql, "VACUUM", NULL, NULL, NULL) != SQLITE_OK)
throw runtime_error("error vacuuming after migration");
}
|