~ubuntu-branches/ubuntu/precise/maas/precise

« back to all changes in this revision

Viewing changes to src/maasserver/migrations/0001_initial.py

  • Committer: Package Import Robot
  • Author(s): Andres Rodriguez, Dave Walker (Daviey), Andres Rodriguez, Scott Moser
  • Date: 2012-03-22 10:56:58 UTC
  • mfrom: (1.1.6)
  • Revision ID: package-import@ubuntu.com-20120322105658-cc42wllftxl8qpxm
Tags: 0.1+bzr338+dfsg-0ubuntu1
[ Dave Walker (Daviey) ]
* d/patches/03-txlongpoll-config.patch: Resolve typo error from prior patch.
  - LP: #961031

[ Andres Rodriguez ]
* debian/maas.config: Don't allow reconfigure.
* debian/maas.postinst: Don't allow reconfigure. Run sync/migrate db on
  all upgrades.

[ Scott Moser ]
* add rsylog config for logging node boots (LP: 960149)

Show diffs side-by-side

added added

removed removed

Lines of Context:
18
18
 
19
19
# encoding: utf-8
20
20
import datetime
 
21
 
 
22
from django.db import models
21
23
from south.db import db
22
24
from south.v2 import SchemaMigration
23
 
from django.db import models
 
25
 
24
26
 
25
27
class Migration(SchemaMigration):
26
28