# Migrate from Plumber to Workflow

Umbraco Workflow is backwards compatible with Plumber data. However, with a new default namespace constituting a major breaking change any existing customization or extension needs to be updated.

To migrate from an Umbraco installation with an existing Plumber installation to Umbraco Workflow, follow these steps:

{% tabs %}
{% tab title="Site running on SQL Server database" %}

1. Uninstall Plumber and remove the `/App_Plugins/Plumber` folder.
2. Upgrade your project to Umbraco 11.
3. Install Umbraco Workflow 11. See the [Installing Umbraco Workflow](/umbraco-workflow/installation/installing-workflow.md) article.
4. Build the application.

{% hint style="info" %}
SQL is the preferred database provider for production websites.
{% endhint %}
{% endtab %}

{% tab title="Site running on SQLite database" %}

1. Uninstall Plumber and remove the `/App_Plugins/Plumber` folder.
2. Upgrade your project to Umbraco 11.
3. Make a copy of the `Value` column from the `WorkflowSettings` table.
4. Delete the `WorkflowSettings` table.
5. Update `WorkflowTaskInstance` table to allow null values in the GroupId column.
6. Install Umbraco Workflow 11. See the [Installing Umbraco Workflow](/umbraco-workflow/installation/installing-workflow.md) article.
7. Build the application.
8. Update the `WorkflowSettings` table to restore the previous data to the `Value` column.
   {% endtab %}
   {% endtabs %}

{% hint style="info" %}
All your existing workflow data and settings are not affected and will be available on your upgraded site.
{% endhint %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.umbraco.com/umbraco-workflow/upgrading/migrating-workflow.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
