> ## Documentation Index
> Fetch the complete documentation index at: https://planetscale.com/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Hobby tier deprecation - FAQ

## Overview

All existing Hobby tier databases will need to upgrade their database to a paid plan by April 8, 2024. Databases which are not upgraded by April 8th will be put into sleep mode. If you need to retrieve your data after April 8th, you will be able to temporarily wake your database for 24 hours.

<AccordionGroup>
  <Accordion title="What is happening to the Hobby tier?">
    PlanetScale has made the decision to stop offering our Hobby tier.

    On March 6th, it will no longer be possible to create new Hobby tier databases. Databases which are not upgraded by April 8th will be put into sleep mode. If you need to retrieve your data after April 8th, you will be able to temporarily wake your database for 24 hours.
  </Accordion>

  <Accordion title="How do I stop my database from going offline?">
    To prevent your database from going offline on April 8th, you need to upgrade to a paid plan.
  </Accordion>

  <Accordion title="Will PlanetScale delete my data?">
    No! PlanetScale's [database sleeping](/plans/database-sleeping) makes a backup copy of your data before shutting a database down and safely archives it.
  </Accordion>

  <Accordion title="How do I migrate off of PlanetScale?">
    First, export the data from your branch using the [PlanetScale CLI](/cli/planetscale-environment-setup):

    ```bash theme={null}
    pscale db dump <DATABASE_NAME> <BRANCH_NAME>
    ```

    This may take several minutes, depending on the amount of data in the branch. The dump of your data will be in a folder in your working directory. For example:

    ```bash theme={null}
    pscale database dump test main
    ```

    You'll see a message like this:

    ```
    Starting to dump all tables from database test to folder /Users/nick/pscale_dump_test_main_20240305_144231
    Dumping is finished! (elapsed time: 3.886106333s)
    ```

    Inside of the `pscale_dump_test_main_20240305_144231` folder, there are files with names ending in `-schema.sql` which contains the schema for the database, as well as files with names like `test.test.00001.sql` which contain the data. When [restoring the backup files](https://dev.mysql.com/doc/refman/8.0/en/reloading-sql-format-dumps.html) to a new MySQL server be sure to create the database first, and to load the schema files before the table data files.

    ```
    mysql -e "create database test"
    mysql test < pscale_dump_test_main_20240305_144231/*.sql
    ```

    Database dumps created with pscale are also compatible with [`myloader`](https://github.com/mydumper/mydumper), which is useful for loading larger backups into another instance of MySQL. Using a MySQL instance hosted on DigitalOcean as an example:

    ```bash theme={null}
    cat db.ini
    [myloader]
    host = db-mysql-sfo3-5233-do-user-137498-0.b.db.ondigitalocean.com
    user = doadmin
    password = <REDACTED>
    database = defaultdb
    port = 25060
    ```

    Then, we can run `myloader` to load data into the other MySQL instance:

    ```bash theme={null}
    myloader --defaults-file db.ini --directory pscale_dump_test_main_20240305_144231/
    ```

    If you get an error that looks like:

    ```sql theme={null}
    Unknown column 'nick2' in 'field list'
    ```

    Ensure that your `SQL_MODE` does not contain `ANSI_QUOTES`.

    Once this is done, your data should be loaded in your other MySQL database.

    If you run into any issues, please don't hesitate to reach out to `support@planetscale.com` or submit a ticket at [`https://planetscale.com/support`](https://planetscale.com/contact?initial=support).
  </Accordion>

  <Accordion title="How do I get my data after April 8th?">
    If you do not wish to upgrade, you will be able to temporarily wake your database for 24 hours to retrieve your data.
  </Accordion>

  <Accordion title="I can't migrate in time, help!">
    If this causes you or your business problems, please don't hesitate to reach out to `support@planetscale.com` or submit a ticket at [`https://planetscale.com/support`](https://planetscale.com/contact?initial=support). We are happy
    to work with you to minimize the disruption that this change causes.
  </Accordion>

  <Accordion title="Where do I learn about the base plan?">
    You can find information about our base plan in the [Plans documentation](/planetscale-plans#base-plan).
  </Accordion>

  <Accordion title="Can I pay for a hobby database?">
    At this time, PlanetScale does not offer database plans that are smaller than [base at the PS-10 cluster size](/planetscale-plans).
  </Accordion>
</AccordionGroup>

## Need help?

Get help from [the PlanetScale Support team](https://planetscale.com/contact?initial=support), or join our [Discord community](https://pscale.link/community) to see how others are using PlanetScale.
