Skip to content

Commit

Permalink
number of calls migrations
Browse files Browse the repository at this point in the history
  • Loading branch information
gotlium committed Apr 25, 2015
1 parent f2159f7 commit fe74fbf
Show file tree
Hide file tree
Showing 2 changed files with 92 additions and 0 deletions.
19 changes: 19 additions & 0 deletions mmc/migrations/0007_mmcscript_calls.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# -*- coding: utf-8 -*-
from __future__ import unicode_literals

from django.db import models, migrations


class Migration(migrations.Migration):

dependencies = [
('mmc', '0006_auto_20150424_2114'),
]

operations = [
migrations.AddField(
model_name='mmcscript',
name='calls',
field=models.BigIntegerField(default=0, verbose_name=b'Number of calls'),
),
]
73 changes: 73 additions & 0 deletions mmc/south_migrations/0014_auto__add_field_mmcscript_calls.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,73 @@
# -*- 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 field 'MMCScript.calls'
db.add_column('mmc_mmcscript', 'calls',
self.gf('django.db.models.fields.BigIntegerField')(default=0),
keep_default=False)


def backwards(self, orm):
# Deleting field 'MMCScript.calls'
db.delete_column('mmc_mmcscript', 'calls')


models = {
'mmc.mmcemail': {
'Meta': {'object_name': 'MMCEmail'},
'created': ('django.db.models.fields.DateField', [], {'auto_now': 'True', 'blank': 'True'}),
'email': ('django.db.models.fields.EmailField', [], {'max_length': '75'}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'ignore': ('django.db.models.fields.related.ManyToManyField', [], {'symmetrical': 'False', 'to': "orm['mmc.MMCScript']", 'null': 'True', 'blank': 'True'}),
'is_active': ('django.db.models.fields.BooleanField', [], {'default': 'True'})
},
'mmc.mmchost': {
'Meta': {'object_name': 'MMCHost'},
'created': ('django.db.models.fields.DateField', [], {'auto_now': 'True', 'blank': 'True'}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'ignore': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '255'})
},
'mmc.mmclog': {
'Meta': {'object_name': 'MMCLog'},
'cpu_time': ('django.db.models.fields.FloatField', [], {'default': '0.0'}),
'created': ('django.db.models.fields.DateField', [], {'auto_now': 'True', 'blank': 'True'}),
'elapsed': ('django.db.models.fields.FloatField', [], {}),
'end': ('django.db.models.fields.DateTimeField', [], {'auto_now': 'True', 'blank': 'True'}),
'error_message': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
'hostname': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['mmc.MMCHost']"}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'memory': ('django.db.models.fields.FloatField', [], {'default': '0.0'}),
'pid': ('django.db.models.fields.IntegerField', [], {'default': '1'}),
'script': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['mmc.MMCScript']"}),
'start': ('django.db.models.fields.DateTimeField', [], {}),
'stdout_messages': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
'success': ('django.db.models.fields.NullBooleanField', [], {'default': 'None', 'null': 'True', 'blank': 'True'}),
'sys_argv': ('django.db.models.fields.CharField', [], {'max_length': '255', 'null': 'True', 'blank': 'True'}),
'traceback': ('django.db.models.fields.TextField', [], {'null': 'True', 'blank': 'True'}),
'was_notified': ('django.db.models.fields.BooleanField', [], {'default': 'False'})
},
'mmc.mmcscript': {
'Meta': {'object_name': 'MMCScript'},
'calls': ('django.db.models.fields.BigIntegerField', [], {'default': '0'}),
'created': ('django.db.models.fields.DateField', [], {'auto_now': 'True', 'blank': 'True'}),
'enable_triggers': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
'ignore': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
'name': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '255'}),
'one_copy': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
'save_on_error': ('django.db.models.fields.BooleanField', [], {'default': 'False'}),
'trigger_cpu': ('django.db.models.fields.FloatField', [], {'null': 'True', 'blank': 'True'}),
'trigger_memory': ('django.db.models.fields.FloatField', [], {'null': 'True', 'blank': 'True'}),
'trigger_time': ('django.db.models.fields.FloatField', [], {'null': 'True', 'blank': 'True'})
}
}

complete_apps = ['mmc']

0 comments on commit fe74fbf

Please sign in to comment.