Skip to content

Commit

Permalink
📝 docs: add migrations section
Browse files Browse the repository at this point in the history
  • Loading branch information
ezeparziale committed Dec 15, 2022
1 parent 5fa9062 commit eb3ca5e
Show file tree
Hide file tree
Showing 16 changed files with 700 additions and 0 deletions.
321 changes: 321 additions & 0 deletions docs/advanced/migrations.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,321 @@
# Migrations

We will use `Alembic` to handle database schema changes.

`SQLModel` is compatible with `Alembic`.

## Initial example

We'll continue from another example that has the creation of database and tables, and other essentials features.

<details>
<summary>👀 Full file example</summary>

```Python
{!./docs_src/advanced/migrations/tutorial001.py!}
```

</details>

## First step

Add `Alembic` to your project.

Example using pip.

<div class="termy">

```console
$ pip install alembic

Installing collected packages: alembic
Successfully installed alembic-1.8.1
```

</div>

## Clean your code

We need to clean our step that create the database and tables.

```Python hl_lines="3-4"
# Code above omitted 👆

{!./docs_src/advanced/migrations/tutorial001.py[ln:19-20]!}

# Code below omitted 👇
```

```Python hl_lines="4-4"
# Code above omitted 👆

{!./docs_src/advanced/migrations/tutorial001.py[ln:44-47]!}

# Code below omitted 👇
```

<details>
<summary>👀 Full file example</summary>

```Python
{!./docs_src/advanced/migrations/main.py!}
```

</details>

## Alembic configuration

In this step we need initialize alembic.

<div class="termy">

```console
$ alembic init migrations

Creating directory migrations ... done
Creating directory migrations\versions ... done
Generating alembic.ini ... done
Generating migrations\env.py ... done
Generating migrations\README ... done
Generating migrations\script.py.mako ... done
Please edit configuration/connection/logging settings in 'alembic.ini' before proceeding.

```

</div>

!!! info
We can also use `alembic init alembic` to create `alembic` folder instead of `migrations` folder.

Then go to `migrations\script.py.mako` to add sqlmodel module.

```Python hl_lines="5-5"
# Code above omitted 👆

{!./docs_src/advanced/migrations/tutorial003.py[ln:8-10]!}

# Code below omitted 👇
```

!!! info
In new migrations alembic will add SQLModel automatically.

<details>
<summary>👀 Full script.py.mako example</summary>

```Python
{!./docs_src/advanced/migrations/tutorial003.py!}
```

</details>

Then go to `migrations\env.py` to finish the alembic configuration.

- Import your models (in this case `Hero`) and `SQLModel`

```Python hl_lines="5-6"
# Code above omitted 👆

{!./docs_src/advanced/migrations/tutorial004.py[ln:1-6]!}

# Code below omitted 👇
```

!!! warning
First import your models and then import SQLModel otherwise sqlmodel doesn´t recognize all models.

- Then set your database url

```Python hl_lines="4-4"
# Code above omitted 👆

{!./docs_src/advanced/migrations/tutorial004.py[ln:13-14]!}

# Code below omitted 👇
```

!!! tip
This step can be replaced setting the same `sqlalchemy.url` variable in `alembic.ini` file.

- Finally set `target_metadata` with your `SQLModel.metada`

```Python hl_lines="3-3"
# Code above omitted 👆

{!./docs_src/advanced/migrations/tutorial004.py[ln:25-25]!}

# Code below omitted 👇
```

<details>
<summary>👀 Full env.py example</summary>

```Python
{!./docs_src/advanced/migrations/tutorial004.py!}
```

</details>

## Run migrations

In this step we need to generate the initial version of the database.

<div class="termy">

```console
$ alembic revision --autogenerate -m "init_db"

INFO [alembic.runtime.migration] Context impl SQLiteImpl.
INFO [alembic.runtime.migration] Will assume non-transactional DDL.
INFO [alembic.autogenerate.compare] Detected added table 'hero'
Generating migrations\versions\34abfb7ac266_init_db.py ... done
```

</div>

Now in `versions` folder we have a new file called `34abfb7ac266_init_db.py`

!!! info
This file has a revision id and the message part from our revision command.

```{ .python .annotate }
{!./docs_src/advanced/migrations/tutorial005.py!}
```

{!./docs_src/advanced/migrations/annotations/en/tutorial005.md!}

!!! success
At this moment we have all the files to create our new database model.

Initialize the database:

<div class="termy">

```console
$ alembic upgrade head

INFO [alembic.runtime.migration] Context impl SQLiteImpl.
INFO [alembic.runtime.migration] Will assume non-transactional DDL.
INFO [alembic.runtime.migration] Running upgrade -> 34abfb7ac266, init_db
```

</div>

Now we have two tables:

- `alembic_version`: with the version_num asociate with the revision id
- `hero`: the new table from our model

<img class="shadow" src="/img/advanced/migrations/migrations001.png">

`Hero` table is empty.

<img class="shadow" src="/img/advanced/migrations/migrations002.png">

Then run `main.py` script

<div class="termy">

```console
$ python main.py

INFO sqlalchemy.engine.Engine BEGIN (implicit)
INFO sqlalchemy.engine.Engine INSERT INTO hero (name, secret_name, age) VALUES (?, ?, ?)
INFO sqlalchemy.engine.Engine [generated in 0.00035s] ('Deadpond', 'Dive Wilson', None)
INFO sqlalchemy.engine.Engine INSERT INTO hero (name, secret_name, age) VALUES (?, ?, ?)
INFO sqlalchemy.engine.Engine [cached since 0.002439s ago] ('Spider-Boy', 'Pedro Parqueador', None)
INFO sqlalchemy.engine.Engine INSERT INTO hero (name, secret_name, age) VALUES (?, ?, ?)
INFO sqlalchemy.engine.Engine [cached since 0.003134s ago] ('Rusty-Man', 'Tommy Sharp', 48)
INFO sqlalchemy.engine.Engine COMMIT
INFO sqlalchemy.engine.Engine BEGIN (implicit)
INFO sqlalchemy.engine.Engine SELECT hero.id, hero.name, hero.secret_name, hero.age
FROM hero
INFO sqlalchemy.engine.Engine [generated in 0.00038s] ()
age=None id=1 name='Deadpond' secret_name='Dive Wilson'
age=None id=2 name='Spider-Boy' secret_name='Pedro Parqueador'
age=48 id=3 name='Rusty-Man' secret_name='Tommy Sharp'
INFO sqlalchemy.engine.Engine ROLLBACK
```

</div>

Now the `hero` table has new rows:

<img class="shadow" src="/img/advanced/migrations/migrations003.png">

## Next steps

If we edit our model changing the database schema we can run again alembic to generate a new revision.

Example: adding a new field named `power`

```Python hl_lines="4-4"
# Code above omitted 👆

{!./docs_src/advanced/migrations/tutorial006.py[ln:10-11]!}

# Code below omitted 👇
```

<details>
<summary>👀 Full file example</summary>

```Python
{!./docs_src/advanced/migrations/tutorial006.py!}
```

</details>

<div class="termy">

```console
$ alembic revision --autogenerate -m "new field power"

INFO [alembic.runtime.migration] Context impl SQLiteImpl.
INFO [alembic.runtime.migration] Will assume non-transactional DDL.
INFO [alembic.autogenerate.compare] Detected added column 'hero.power'
Generating migrations\versions\b39b8d3c77f0_new_field_power.py ... done
```

</div>

The new file `b39b8d3c77f0_new_field_power.py`:

```{ .python .annotate }
{!./docs_src/advanced/migrations/tutorial007.py!}
```

{!./docs_src/advanced/migrations/annotations/en/tutorial007.md!}

!!! note
Run `alembic upgrade head` to add the new field named power

<div class="termy">

```console
$ alembic upgrade head

INFO [alembic.runtime.migration] Context impl SQLiteImpl.
INFO [alembic.runtime.migration] Will assume non-transactional DDL.
INFO [alembic.runtime.migration] Running upgrade 357d6ebcfadf -> b39b8d3c77f0, new field power
```

</div>

!!! note
After you can downgrade the database to the previous version, run `alembic downgrade -1`

<div class="termy">

```console
$ alembic downgrade -1

INFO [alembic.runtime.migration] Context impl SQLiteImpl.
INFO [alembic.runtime.migration] Will assume non-transactional DDL.
INFO [alembic.runtime.migration] Running downgrade b39b8d3c77f0 -> 357d6ebcfadf, new field power
```

</div>

!!! success
Migrations complete!!! Try adding new tables and relationship.
Binary file added docs/img/advanced/migrations/migrations001.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/advanced/migrations/migrations002.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added docs/img/advanced/migrations/migrations003.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
10 changes: 10 additions & 0 deletions docs_src/advanced/migrations/annotations/en/tutorial005.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
1. SQLmodel import
2. Upgrade function to add the new schema in the database
3. Create a new table named `hero`
4. `id` field
5. `name` field
6. `secret_name` field
7. `age` field
8. Setting `id` field as primary key
9. Downgrade function to rollback our changes
10. Delete the table named `hero`
4 changes: 4 additions & 0 deletions docs_src/advanced/migrations/annotations/en/tutorial007.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
1. New revision id
2. Previous revision id, if downgrade go to this revision id
3. `power` new field
4. Drop column if downgrade
45 changes: 45 additions & 0 deletions docs_src/advanced/migrations/main.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
from typing import Optional

from sqlmodel import Field, Session, SQLModel, create_engine, select


class Hero(SQLModel, table=True):
id: Optional[int] = Field(default=None, primary_key=True)
name: str
secret_name: str
age: Optional[int] = None


sqlite_file_name = "database.db"
sqlite_url = f"sqlite:///{sqlite_file_name}"

engine = create_engine(sqlite_url, echo=True)

def create_heroes():
hero_1 = Hero(name="Deadpond", secret_name="Dive Wilson")
hero_2 = Hero(name="Spider-Boy", secret_name="Pedro Parqueador")
hero_3 = Hero(name="Rusty-Man", secret_name="Tommy Sharp", age=48)

with Session(engine) as session:
session.add(hero_1)
session.add(hero_2)
session.add(hero_3)

session.commit()


def select_heroes():
with Session(engine) as session:
statement = select(Hero)
results = session.exec(statement)
for hero in results:
print(hero)


def main():
create_heroes()
select_heroes()


if __name__ == "__main__":
main()
Loading

0 comments on commit eb3ca5e

Please sign in to comment.