Changes between Version 40 and Version 41 of SchemaEvolution


Ignore:
Timestamp:
Jan 12, 2008, 2:35:23 PM (16 years ago)
Author:
anonymous
Comment:

Added numbered headings for Possible Solutions

Legend:

Unmodified
Added
Removed
Modified
  • SchemaEvolution

    v40 v41  
    124124== Possible solutions ==
    125125
    126 === Write SQL ===
     126=== 1. Write SQL ===
    127127   
    128128This is the current situation: you write a bunch of SQL and bung it into
     
    139139    to deal with the data migration.
    140140       
    141 === Automatic db introspection ===
     141=== 2. Automatic db introspection ===
    142142
    143143In this scenario, Django inspects your models and your database, and
     
    165165    the SQL she writes quickly.
    166166       
    167 === Automatically applied migration code ===
     167=== 3. Automatically applied migration code ===
    168168
    169169In this scenario, you give your models a version. When it comes time to upgrade,
     
    196196    since she has lots of custom code she needs to run.
    197197   
    198 === Introspection + migration ===
     198=== 4. Introspection + migration ===
    199199
    200200This approach is a combination of `Automatic db introspection`_ and
Back to Top