Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
itminedu
djnro
Commits
b23b3d10
Commit
b23b3d10
authored
Oct 23, 2012
by
Leonidas Poulopoulos
Browse files
Moved ertype from instdetails to inst
parent
25028c1d
Changes
1
Hide whitespace changes
Inline
Side-by-side
edumanage/migrations/0016_auto__add_field_institution_ertype__del_field_institutiondetails_ertyp.py
0 → 100644
View file @
b23b3d10
# encoding: 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 field 'Institution.ertype'
db
.
add_column
(
'edumanage_institution'
,
'ertype'
,
self
.
gf
(
'django.db.models.fields.PositiveIntegerField'
)(
default
=
1
,
max_length
=
1
,
db_column
=
'type'
),
keep_default
=
False
)
# Deleting field 'InstitutionDetails.ertype'
db
.
delete_column
(
'edumanage_institutiondetails'
,
'type'
)
def
backwards
(
self
,
orm
):
# Deleting field 'Institution.ertype'
db
.
delete_column
(
'edumanage_institution'
,
'type'
)
# Adding field 'InstitutionDetails.ertype'
db
.
add_column
(
'edumanage_institutiondetails'
,
'ertype'
,
self
.
gf
(
'django.db.models.fields.PositiveIntegerField'
)(
default
=
3
,
max_length
=
1
,
db_column
=
'type'
),
keep_default
=
False
)
models
=
{
'contenttypes.contenttype'
:
{
'Meta'
:
{
'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'
})
},
'edumanage.contact'
:
{
'Meta'
:
{
'object_name'
:
'Contact'
},
'email'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'80'
,
'db_column'
:
"'contact_email'"
}),
'firstname'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'80'
,
'db_column'
:
"'contact_firstname'"
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'lastname'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'80'
,
'db_column'
:
"'contact_lastname'"
}),
'phone'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'80'
,
'db_column'
:
"'contact_phone'"
})
},
'edumanage.institution'
:
{
'Meta'
:
{
'object_name'
:
'Institution'
},
'ertype'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'max_length'
:
'1'
,
'db_column'
:
"'type'"
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'realmid'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['edumanage.Realm']"
})
},
'edumanage.institutioncontactpool'
:
{
'Meta'
:
{
'object_name'
:
'InstitutionContactPool'
},
'contact'
:
(
'django.db.models.fields.related.OneToOneField'
,
[],
{
'to'
:
"orm['edumanage.Contact']"
,
'unique'
:
'True'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'institution'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['edumanage.Institution']"
})
},
'edumanage.institutiondetails'
:
{
'Meta'
:
{
'object_name'
:
'InstitutionDetails'
},
'address_city'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'64'
}),
'address_street'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'96'
}),
'contact'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'to'
:
"orm['edumanage.Contact']"
,
'symmetrical'
:
'False'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'institution'
:
(
'django.db.models.fields.related.OneToOneField'
,
[],
{
'to'
:
"orm['edumanage.Institution']"
,
'unique'
:
'True'
}),
'number_id'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'max_length'
:
'6'
}),
'number_user'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'max_length'
:
'6'
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'oper_name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'24'
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'ts'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'auto_now'
:
'True'
,
'blank'
:
'True'
})
},
'edumanage.instrealm'
:
{
'Meta'
:
{
'object_name'
:
'InstRealm'
},
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'instid'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['edumanage.Institution']"
}),
'proxyto'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'to'
:
"orm['edumanage.InstServer']"
,
'symmetrical'
:
'False'
}),
'realm'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'160'
})
},
'edumanage.instrealmmon'
:
{
'Meta'
:
{
'object_name'
:
'InstRealmMon'
},
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'instid'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['edumanage.Institution']"
}),
'mon_type'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'8'
}),
'realm'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'20'
})
},
'edumanage.instserver'
:
{
'Meta'
:
{
'object_name'
:
'InstServer'
},
'acct_port'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'max_length'
:
'5'
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'ertype'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'max_length'
:
'1'
,
'db_column'
:
"'type'"
}),
'host'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'80'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'instid'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['edumanage.Institution']"
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'80'
}),
'port'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'max_length'
:
'5'
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'proto'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'12'
}),
'retry'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'max_length'
:
'2'
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'secret'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'16'
}),
'status_server'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
,
'blank'
:
'True'
}),
'timeout'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'max_length'
:
'2'
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'ts'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'auto_now'
:
'True'
,
'blank'
:
'True'
})
},
'edumanage.monlocaleapoldata'
:
{
'Meta'
:
{
'object_name'
:
'MonLocalEAPOLData'
},
'cert'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'32'
}),
'eap_method'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'16'
}),
'exp_response'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'6'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'instrealmmonid'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['edumanage.InstRealmMon']"
}),
'passwp'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'24'
,
'db_column'
:
"'pass'"
}),
'phase2'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'16'
}),
'username'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'24'
})
},
'edumanage.monproxybackclient'
:
{
'Meta'
:
{
'object_name'
:
'MonProxybackClient'
},
'host'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'80'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'instrealmmonid'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['edumanage.InstRealmMon']"
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'80'
}),
'proto'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'12'
}),
'secret'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'16'
}),
'status_server'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
,
'blank'
:
'True'
}),
'ts'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'auto_now'
:
'True'
,
'blank'
:
'True'
})
},
'edumanage.name_i18n'
:
{
'Meta'
:
{
'object_name'
:
'Name_i18n'
},
'content_type'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['contenttypes.ContentType']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'lang'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'5'
}),
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'80'
}),
'object_id'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
})
},
'edumanage.realm'
:
{
'Meta'
:
{
'object_name'
:
'Realm'
},
'address_city'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'24'
}),
'address_street'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'32'
}),
'contact'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'to'
:
"orm['edumanage.Contact']"
,
'symmetrical'
:
'False'
}),
'country'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'2'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'stype'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'default'
:
'0'
,
'max_length'
:
'1'
}),
'ts'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'auto_now'
:
'True'
,
'blank'
:
'True'
})
},
'edumanage.realmdata'
:
{
'Meta'
:
{
'object_name'
:
'RealmData'
},
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'number_IdP'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'max_length'
:
'5'
}),
'number_IdPSP'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'max_length'
:
'5'
}),
'number_SP'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'max_length'
:
'5'
}),
'number_id'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'max_length'
:
'9'
}),
'number_inst'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'max_length'
:
'5'
}),
'number_user'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'max_length'
:
'9'
}),
'realmid'
:
(
'django.db.models.fields.related.OneToOneField'
,
[],
{
'to'
:
"orm['edumanage.Realm']"
,
'unique'
:
'True'
}),
'ts'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{})
},
'edumanage.serviceloc'
:
{
'AP_no'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'max_length'
:
'3'
}),
'IPv6'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
,
'blank'
:
'True'
}),
'Meta'
:
{
'object_name'
:
'ServiceLoc'
},
'NAT'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
,
'blank'
:
'True'
}),
'SSID'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'16'
}),
'address_city'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'64'
}),
'address_street'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'96'
}),
'contact'
:
(
'django.db.models.fields.related.ManyToManyField'
,
[],
{
'to'
:
"orm['edumanage.Contact']"
,
'symmetrical'
:
'False'
}),
'enc_level'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'10'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'institutionid'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['edumanage.Institution']"
}),
'latitude'
:
(
'django.db.models.fields.DecimalField'
,
[],
{
'max_digits'
:
'8'
,
'decimal_places'
:
'6'
}),
'longitude'
:
(
'django.db.models.fields.DecimalField'
,
[],
{
'max_digits'
:
'8'
,
'decimal_places'
:
'6'
}),
'port_restrict'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
,
'blank'
:
'True'
}),
'transp_proxy'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
,
'blank'
:
'True'
}),
'ts'
:
(
'django.db.models.fields.DateTimeField'
,
[],
{
'auto_now'
:
'True'
,
'blank'
:
'True'
}),
'wired'
:
(
'django.db.models.fields.BooleanField'
,
[],
{
'default'
:
'False'
,
'blank'
:
'True'
})
},
'edumanage.url_i18n'
:
{
'Meta'
:
{
'object_name'
:
'URL_i18n'
},
'content_type'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['contenttypes.ContentType']"
,
'null'
:
'True'
,
'blank'
:
'True'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'lang'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'5'
}),
'object_id'
:
(
'django.db.models.fields.PositiveIntegerField'
,
[],
{
'null'
:
'True'
,
'blank'
:
'True'
}),
'url'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'180'
,
'db_column'
:
"'URL'"
}),
'urltype'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'10'
,
'db_column'
:
"'type'"
})
}
}
complete_apps
=
[
'edumanage'
]
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment