From 3ab5c7258459713ab582259cc075cd8496fd23d3 Mon Sep 17 00:00:00 2001 From: Benjamin Dauvergne Date: Wed, 26 Mar 2014 15:23:08 +0100 Subject: [PATCH] initialize migrations --- .../migrations/0001_initial.py | 83 +++++++++++++++++++ authentic2_idp_oauth2/migrations/__init__.py | 0 2 files changed, 83 insertions(+) create mode 100644 authentic2_idp_oauth2/migrations/0001_initial.py create mode 100644 authentic2_idp_oauth2/migrations/__init__.py diff --git a/authentic2_idp_oauth2/migrations/0001_initial.py b/authentic2_idp_oauth2/migrations/0001_initial.py new file mode 100644 index 0000000..fb36553 --- /dev/null +++ b/authentic2_idp_oauth2/migrations/0001_initial.py @@ -0,0 +1,83 @@ +# -*- 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 'A2Client' + db.create_table(u'authentic2_idp_oauth2_a2client', ( + (u'client_ptr', self.gf('django.db.models.fields.related.OneToOneField')(to=orm['oauth2.Client'], unique=True, primary_key=True)), + ('logout_url', self.gf('django.db.models.fields.URLField')(max_length=255, null=True, blank=True)), + ('logout_use_iframe', self.gf('django.db.models.fields.BooleanField')(default=False)), + ('logout_use_iframe_timeout', self.gf('django.db.models.fields.PositiveIntegerField')(default=300)), + )) + db.send_create_signal(u'authentic2_idp_oauth2', ['A2Client']) + + + def backwards(self, orm): + # Deleting model 'A2Client' + db.delete_table(u'authentic2_idp_oauth2_a2client') + + + 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', [], {'to': u"orm['auth.Group']", 'symmetrical': 'False', 'blank': 'True'}), + 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', [], {'to': u"orm['auth.Permission']", 'symmetrical': 'False', 'blank': 'True'}), + 'username': ('django.db.models.fields.CharField', [], {'unique': 'True', 'max_length': '30'}) + }, + u'authentic2_idp_oauth2.a2client': { + 'Meta': {'object_name': 'A2Client', '_ormbases': [u'oauth2.Client']}, + u'client_ptr': ('django.db.models.fields.related.OneToOneField', [], {'to': u"orm['oauth2.Client']", 'unique': 'True', 'primary_key': 'True'}), + 'logout_url': ('django.db.models.fields.URLField', [], {'max_length': '255', 'null': 'True', 'blank': 'True'}), + 'logout_use_iframe': ('django.db.models.fields.BooleanField', [], {'default': 'False'}), + 'logout_use_iframe_timeout': ('django.db.models.fields.PositiveIntegerField', [], {'default': '300'}) + }, + 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'oauth2.client': { + 'Meta': {'object_name': 'Client'}, + 'client_id': ('django.db.models.fields.CharField', [], {'default': "'fbc113a2fb869b6d882b'", 'max_length': '255'}), + 'client_secret': ('django.db.models.fields.CharField', [], {'default': "'9d8cba52c5d12ddd8e7d2379ab6c53ba058e7d2d'", 'max_length': '255'}), + 'client_type': ('django.db.models.fields.IntegerField', [], {}), + u'id': ('django.db.models.fields.AutoField', [], {'primary_key': 'True'}), + 'name': ('django.db.models.fields.CharField', [], {'max_length': '255', 'blank': 'True'}), + 'redirect_uri': ('django.db.models.fields.URLField', [], {'max_length': '200'}), + 'url': ('django.db.models.fields.URLField', [], {'max_length': '200'}), + 'user': ('django.db.models.fields.related.ForeignKey', [], {'blank': 'True', 'related_name': "'oauth2_client'", 'null': 'True', 'to': u"orm['auth.User']"}) + } + } + + complete_apps = ['authentic2_idp_oauth2'] \ No newline at end of file diff --git a/authentic2_idp_oauth2/migrations/__init__.py b/authentic2_idp_oauth2/migrations/__init__.py new file mode 100644 index 0000000..e69de29