Skip to content
This repository has been archived by the owner on Feb 8, 2019. It is now read-only.

Commit

Permalink
use south for db migrations.
Browse files Browse the repository at this point in the history
  • Loading branch information
deathowl committed Jun 3, 2014
1 parent c29f5f4 commit e40fb98
Show file tree
Hide file tree
Showing 9 changed files with 503 additions and 31 deletions.
13 changes: 13 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -60,10 +60,23 @@ virtualenv env
pip install -r requirements.txt
export DJANGO_SETTINGS_MODULE=openduty.settings_dev
python manage.py syncdb
python manage.py migrate
python manage.py runserver
```
now, you can start hacking on it.

# After models you've changed your models please run:
```
./manage.py schemamigration openduty --auto
./manage.py schemamigration notification --auto
./manage.py migrate
```

#If you see a new file appearing in migrations directory when pulling from upstream please run
```
./manage.py migrate
```

# Default login:
root/toor
Expand Down
119 changes: 119 additions & 0 deletions notification/migrations/0001_initial.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,119 @@
# -*- coding: utf-8 -*-
from south.utils import datetime_utils as datetime
from south.db import db
from south.v2 import SchemaMigration
from django.db import models


class Migration(SchemaMigration):

def forwards(self, orm):
# Adding model 'UserNotificationMethod'
db.create_table('openduty_usernotificationmethod', (
(u'id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
('user', self.gf('django.db.models.fields.related.ForeignKey')(related_name='notification_methods', to=orm['auth.User'])),
('position', self.gf('django.db.models.fields.IntegerField')()),
('method', self.gf('django.db.models.fields.CharField')(max_length=50)),
))
db.send_create_signal(u'notification', ['UserNotificationMethod'])

# Adding model 'ScheduledNotification'
db.create_table('openduty_schedulednotification', (
(u'id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
('notifier', self.gf('django.db.models.fields.CharField')(max_length=30)),
('message', self.gf('django.db.models.fields.CharField')(max_length=500)),
('user_to_notify', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['auth.User'])),
('send_at', self.gf('django.db.models.fields.DateTimeField')()),
('incident', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['openduty.Incident'])),
))
db.send_create_signal(u'notification', ['ScheduledNotification'])


def backwards(self, orm):
# Deleting model 'UserNotificationMethod'
db.delete_table('openduty_usernotificationmethod')

# Deleting model 'ScheduledNotification'
db.delete_table('openduty_schedulednotification')


models = {
u'auth.group': {
'Meta': {'object_name': 'Group'},
u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}),
'permissions': ('django.db.models.fields.related.ManyToManyField', [], {'to': u"orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'})
},
u'auth.permission': {
'Meta': {'ordering': "(u'content_type__app_label', u'content_type__model', u'codename')", 'unique_together': "((u'content_type', u'codename'),)", 'object_name': 'Permission'},
'codename': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['contenttypes.ContentType']"}),
u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'name': ('django.db.models.fields.CharField', [], {'max_length': '50'})
},
u'auth.user': {
'Meta': {'object_name': 'User'},
'date_joined': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
'email': ('django.db.models.fields.EmailField', [], {'max_length': '75', 'blank': 'True'}),
'first_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
'groups': ('django.db.models.fields.related.ManyToManyField', [], {'symmetrical': 'False', 'related_name': "u'user_set'", 'blank': 'True', 'to': u"orm['auth.Group']"}),
u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'}),
'is_staff': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
'is_superuser': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
'last_login': ('django.db.models.fields.DateTimeField', [], {'default': 'datetime.datetime.now'}),
'last_name': ('django.db.models.fields.CharField', [], {'max_length': '30', 'blank': 'True'}),
'password': ('django.db.models.fields.CharField', [], {'max_length': '128'}),
'user_permissions': ('django.db.models.fields.related.ManyToManyField', [], {'symmetrical': 'False', 'related_name': "u'user_set'", 'blank': 'True', 'to': u"orm['auth.Permission']"}),
'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'})
},
u'contenttypes.contenttype': {
'Meta': {'ordering': "('name',)", 'unique_together': "(('app_label', 'model'),)", 'object_name': 'ContentType', 'db_table': "'django_content_type'"},
'app_label': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'model': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
'name': ('django.db.models.fields.CharField', [], {'max_length': '100'})
},
u'notification.schedulednotification': {
'Meta': {'object_name': 'ScheduledNotification', 'db_table': "'openduty_schedulednotification'"},
u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'incident': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['openduty.Incident']"}),
'message': ('django.db.models.fields.CharField', [], {'max_length': '500'}),
'notifier': ('django.db.models.fields.CharField', [], {'max_length': '30'}),
'send_at': ('django.db.models.fields.DateTimeField', [], {}),
'user_to_notify': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['auth.User']"})
},
u'notification.usernotificationmethod': {
'Meta': {'object_name': 'UserNotificationMethod', 'db_table': "'openduty_usernotificationmethod'"},
u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'method': ('django.db.models.fields.CharField', [], {'max_length': '50'}),
'position': ('django.db.models.fields.IntegerField', [], {}),
'user': ('django.db.models.fields.related.ForeignKey', [], {'related_name': "'notification_methods'", 'to': u"orm['auth.User']"})
},
u'openduty.incident': {
'Meta': {'unique_together': "(('service_key', 'incident_key'),)", 'object_name': 'Incident'},
'description': ('django.db.models.fields.CharField', [], {'max_length': '100'}),
'details': ('django.db.models.fields.TextField', [], {}),
'event_type': ('django.db.models.fields.CharField', [], {'max_length': '15'}),
u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'incident_key': ('django.db.models.fields.CharField', [], {'max_length': '80'}),
'occurred_at': ('django.db.models.fields.DateTimeField', [], {}),
'service_key': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['openduty.Service']"})
},
u'openduty.schedulepolicy': {
'Meta': {'object_name': 'SchedulePolicy'},
u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}),
'repeat_times': ('django.db.models.fields.IntegerField', [], {})
},
u'openduty.service': {
'Meta': {'object_name': 'Service'},
'escalate_after': ('django.db.models.fields.IntegerField', [], {'null': 'True', 'blank': 'True'}),
'id': ('uuidfield.fields.UUIDField', [], {'unique': 'True', 'max_length': '32', 'primary_key': 'True'}),
'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '80'}),
'policy': ('django.db.models.fields.related.ForeignKey', [], {'to': u"orm['openduty.SchedulePolicy']", 'null': 'True', 'blank': 'True'}),
'retry': ('django.db.models.fields.IntegerField', [], {'null': 'True', 'blank': 'True'})
}
}

complete_apps = ['notification']
Empty file.
Loading

0 comments on commit e40fb98

Please sign in to comment.