diff --git a/root/etc/e-smith/db/configuration/migrate/pydio b/root/etc/e-smith/db/configuration/migrate/pydio new file mode 100644 index 0000000..ea49512 --- /dev/null +++ b/root/etc/e-smith/db/configuration/migrate/pydio @@ -0,0 +1,10 @@ +{ + my $ajxp = $DB->get("ajaxplorer") or return; + + my $pydio = $DB->get("pydio") || + $DB->new_record("pydio", { type => "webapp" }); + + $pydio->merge_props($ajxp->props); + + $ajxp->delete; +}