~lutostag/ubuntu/trusty/maas/1.5.2+packagefix

« back to all changes in this revision

Viewing changes to src/maasserver/migrations/0018_activate_worker_user.py

  • Committer: Package Import Robot
  • Author(s): Andres Rodriguez
  • Date: 2014-03-28 10:43:53 UTC
  • mto: This revision was merged to the branch mainline in revision 57.
  • Revision ID: package-import@ubuntu.com-20140328104353-ekpolg0pm5xnvq2s
Tags: upstream-1.5+bzr2204
ImportĀ upstreamĀ versionĀ 1.5+bzr2204

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# encoding: utf-8
2
2
import datetime
 
3
 
 
4
from django.db import models
 
5
from maasserver.utils.orm import get_one
3
6
from south.db import db
4
7
from south.v2 import SchemaMigration
5
 
from django.db import models
6
8
 
7
 
from maasserver.utils.orm import get_one
8
9
 
9
10
class Migration(SchemaMigration):
10
11