diff --git a/SeaORM/versioned_docs/version-0.9.x/03-migration/02-writing-migration.md b/SeaORM/versioned_docs/version-0.9.x/03-migration/02-writing-migration.md index 91e5469fe32..d712da3e150 100644 --- a/SeaORM/versioned_docs/version-0.9.x/03-migration/02-writing-migration.md +++ b/SeaORM/versioned_docs/version-0.9.x/03-migration/02-writing-migration.md @@ -201,6 +201,6 @@ impl MigrationTrait for Migration { In the grand scheme of things, we recommend a schema first approach: you write migrations first and then generate entities from a live database. -At times, you might want to use the `create_*_from_entity` methods to bootstrap your database with several hand written entity files. +At times, you might want to use the [`create_*_from_entity`](https://www.sea-ql.org/SeaORM/docs/generate-sea-query-statement/create-table/) methods to bootstrap your database with several hand written entity files. -That's perfectly fine if you intend to never change the entity schema. Or, you can clone the original entity and rely on it in the migration file. \ No newline at end of file +That's perfectly fine if you intend to never change the entity schema. Or, you can clone the original entity and rely on it in the migration file.