mirror of https://github.com/zulip/zulip.git
45 lines
2.1 KiB
Python
45 lines
2.1 KiB
Python
|
# -*- coding: utf-8 -*-
|
||
|
import 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 'Confirmation'
|
||
|
db.create_table('confirmation_confirmation', (
|
||
|
('id', self.gf('django.db.models.fields.AutoField')(primary_key=True)),
|
||
|
('content_type', self.gf('django.db.models.fields.related.ForeignKey')(to=orm['contenttypes.ContentType'])),
|
||
|
('object_id', self.gf('django.db.models.fields.PositiveIntegerField')()),
|
||
|
('date_sent', self.gf('django.db.models.fields.DateTimeField')()),
|
||
|
('confirmation_key', self.gf('django.db.models.fields.CharField')(max_length=40)),
|
||
|
))
|
||
|
db.send_create_signal('confirmation', ['Confirmation'])
|
||
|
|
||
|
|
||
|
def backwards(self, orm):
|
||
|
# Deleting model 'Confirmation'
|
||
|
db.delete_table('confirmation_confirmation')
|
||
|
|
||
|
|
||
|
models = {
|
||
|
'confirmation.confirmation': {
|
||
|
'Meta': {'object_name': 'Confirmation'},
|
||
|
'confirmation_key': ('django.db.models.fields.CharField', [], {'max_length': '40'}),
|
||
|
'content_type': ('django.db.models.fields.related.ForeignKey', [], {'to': "orm['contenttypes.ContentType']"}),
|
||
|
'date_sent': ('django.db.models.fields.DateTimeField', [], {}),
|
||
|
'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}),
|
||
|
'object_id': ('django.db.models.fields.PositiveIntegerField', [], {})
|
||
|
},
|
||
|
'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'}),
|
||
|
'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'})
|
||
|
}
|
||
|
}
|
||
|
|
||
|
complete_apps = ['confirmation']
|