Add Decription field to test instance status

Issue #185 resolved
Former user created an issue

No description provided.

Comments (5)

  1. Randle Taylor repo owner

    updated in dev.

    Note this update introduces South for managing schema migrations. Updating to 0.2.4 requires you to perform the following steps (please test it on a development database before doing it on your live db!!!).

    1. Backup your database. This migration is only adding a single field to the TestInstanceStatus model, but it is always good practice to backup before updating your db.
    2. Checkout 0.2.4
    3. python manage.py syncdb #(this will look a little different than normal do to South)
    4. python manage.py migrate qa 0001 --fake
    5. python manage.py migrate units 0001 --fake
    6. python manage.py migrate qa
    7. Confirm in admin that there is now a description field in TestInstanceStatus
  2. Log in to comment