diff options
| author | Vinay Datta <vinaydattarao@gmail.com> | 2026-03-24 18:24:28 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2026-03-24 08:54:28 -0400 |
| commit | f3bdfd2065373272ebb637785cea2313582a8b8c (patch) | |
| tree | 9a4d64e912071b9a42c1de195cc278db0b995407 /docs/intro | |
| parent | f2169ef3688422d394d36007e320bac839117f0b (diff) | |
Fixed #36999 -- Removed mention of Ruby on Rails from tutorial part 2.
This comparison wasn't fleshed out, so it was distracting.
Diffstat (limited to 'docs/intro')
| -rw-r--r-- | docs/intro/tutorial02.txt | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/docs/intro/tutorial02.txt b/docs/intro/tutorial02.txt index a62d59e4ac..b93f5d8a38 100644 --- a/docs/intro/tutorial02.txt +++ b/docs/intro/tutorial02.txt @@ -95,10 +95,9 @@ additional metadata. Django follows the :ref:`DRY Principle <dry>`. The goal is to define your data model in one place and automatically derive things from it. - This includes the migrations - unlike in Ruby On Rails, for example, - migrations are entirely derived from your models file, and are essentially a - history that Django can roll through to update your database schema to - match your current models. + This includes the migrations, which are derived from your models file. + They form a history that Django uses to update your database schema + to match your current models. In our poll app, we'll create two models: ``Question`` and ``Choice``. A ``Question`` has a question and a publication date. A ``Choice`` has two |
