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
synnefo
Commits
b6552593
Commit
b6552593
authored
Apr 19, 2013
by
Giorgos Korfiatis
Browse files
Move intdecimalfield.py to snf_django package
Rename it to fields.py and update all migrations that reference the field.
parent
27f32548
Changes
20
Hide whitespace changes
Inline
Side-by-side
snf-astakos-app/astakos/im/migrations/0015_auto__add_chain__add_project__add_projectmembership__add_unique_projec.py
View file @
b6552593
...
...
@@ -147,12 +147,12 @@ class Migration(SchemaMigration):
(
'id'
,
self
.
gf
(
'django.db.models.fields.AutoField'
)(
primary_key
=
True
)),
(
'resource'
,
self
.
gf
(
'django.db.models.fields.related.ForeignKey'
)(
to
=
orm
[
'im.Resource'
])),
(
'project_application'
,
self
.
gf
(
'django.db.models.fields.related.ForeignKey'
)(
to
=
orm
[
'im.ProjectApplication'
],
null
=
True
)),
(
'project_capacity'
,
self
.
gf
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
)(
default
=
100000000000000000000000000000000L
,
max_digits
=
38
,
decimal_places
=
0
)),
(
'project_import_limit'
,
self
.
gf
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
)(
default
=
100000000000000000000000000000000L
,
max_digits
=
38
,
decimal_places
=
0
)),
(
'project_export_limit'
,
self
.
gf
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
)(
default
=
100000000000000000000000000000000L
,
max_digits
=
38
,
decimal_places
=
0
)),
(
'member_capacity'
,
self
.
gf
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
)(
default
=
100000000000000000000000000000000L
,
max_digits
=
38
,
decimal_places
=
0
)),
(
'member_import_limit'
,
self
.
gf
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
)(
default
=
100000000000000000000000000000000L
,
max_digits
=
38
,
decimal_places
=
0
)),
(
'member_export_limit'
,
self
.
gf
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
)(
default
=
100000000000000000000000000000000L
,
max_digits
=
38
,
decimal_places
=
0
)),
(
'project_capacity'
,
self
.
gf
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
)(
default
=
100000000000000000000000000000000L
,
max_digits
=
38
,
decimal_places
=
0
)),
(
'project_import_limit'
,
self
.
gf
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
)(
default
=
100000000000000000000000000000000L
,
max_digits
=
38
,
decimal_places
=
0
)),
(
'project_export_limit'
,
self
.
gf
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
)(
default
=
100000000000000000000000000000000L
,
max_digits
=
38
,
decimal_places
=
0
)),
(
'member_capacity'
,
self
.
gf
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
)(
default
=
100000000000000000000000000000000L
,
max_digits
=
38
,
decimal_places
=
0
)),
(
'member_import_limit'
,
self
.
gf
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
)(
default
=
100000000000000000000000000000000L
,
max_digits
=
38
,
decimal_places
=
0
)),
(
'member_export_limit'
,
self
.
gf
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
)(
default
=
100000000000000000000000000000000L
,
max_digits
=
38
,
decimal_places
=
0
)),
))
db
.
send_create_signal
(
'im'
,
[
'ProjectResourceGrant'
])
...
...
@@ -509,13 +509,13 @@ class Migration(SchemaMigration):
'im.projectresourcegrant'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'project_application'),)"
,
'object_name'
:
'ProjectResourceGrant'
},
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'member_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_application'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.ProjectApplication']"
,
'null'
:
'True'
}),
'project_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
})
},
'im.resource'
:
{
...
...
snf-astakos-app/astakos/im/migrations/0016_auth_providers_and_projects.py
View file @
b6552593
...
...
@@ -300,13 +300,13 @@ class Migration(DataMigration):
'im.projectresourcegrant'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'project_application'),)"
,
'object_name'
:
'ProjectResourceGrant'
},
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'member_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_application'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.ProjectApplication']"
,
'null'
:
'True'
}),
'project_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
})
},
'im.resource'
:
{
...
...
snf-astakos-app/astakos/im/migrations/0017_auto__add_field_resource_uplimit__chg_field_astakosuserquota_capacity_.py
View file @
b6552593
...
...
@@ -9,19 +9,19 @@ class Migration(SchemaMigration):
def
forwards
(
self
,
orm
):
# Adding field 'Resource.uplimit'
db
.
add_column
(
'im_resource'
,
'uplimit'
,
self
.
gf
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
)(
default
=
0
,
max_digits
=
38
,
decimal_places
=
0
),
keep_default
=
False
)
db
.
add_column
(
'im_resource'
,
'uplimit'
,
self
.
gf
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
)(
default
=
0
,
max_digits
=
38
,
decimal_places
=
0
),
keep_default
=
False
)
# Changing field 'AstakosUserQuota.capacity'
db
.
alter_column
(
'im_astakosuserquota'
,
'capacity'
,
self
.
gf
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
)(
default
=
0
,
max_digits
=
38
,
decimal_places
=
0
))
db
.
alter_column
(
'im_astakosuserquota'
,
'capacity'
,
self
.
gf
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
)(
default
=
0
,
max_digits
=
38
,
decimal_places
=
0
))
# Changing field 'AstakosUserQuota.import_limit'
db
.
alter_column
(
'im_astakosuserquota'
,
'import_limit'
,
self
.
gf
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
)(
max_digits
=
38
,
decimal_places
=
0
))
db
.
alter_column
(
'im_astakosuserquota'
,
'import_limit'
,
self
.
gf
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
)(
max_digits
=
38
,
decimal_places
=
0
))
# Changing field 'AstakosUserQuota.export_limit'
db
.
alter_column
(
'im_astakosuserquota'
,
'export_limit'
,
self
.
gf
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
)(
max_digits
=
38
,
decimal_places
=
0
))
db
.
alter_column
(
'im_astakosuserquota'
,
'export_limit'
,
self
.
gf
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
)(
max_digits
=
38
,
decimal_places
=
0
))
# Changing field 'AstakosUserQuota.quantity'
db
.
alter_column
(
'im_astakosuserquota'
,
'quantity'
,
self
.
gf
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
)(
max_digits
=
38
,
decimal_places
=
0
))
db
.
alter_column
(
'im_astakosuserquota'
,
'quantity'
,
self
.
gf
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
)(
max_digits
=
38
,
decimal_places
=
0
))
def
backwards
(
self
,
orm
):
...
...
@@ -127,11 +127,11 @@ class Migration(SchemaMigration):
},
'im.astakosuserquota'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'user'),)"
,
'object_name'
:
'AstakosUserQuota'
},
'capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
}),
'user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.AstakosUser']"
})
},
...
...
@@ -233,13 +233,13 @@ class Migration(SchemaMigration):
'im.projectresourcegrant'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'project_application'),)"
,
'object_name'
:
'ProjectResourceGrant'
},
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'member_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_application'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.ProjectApplication']"
,
'null'
:
'True'
}),
'project_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
})
},
'im.resource'
:
{
...
...
@@ -251,7 +251,7 @@ class Migration(SchemaMigration):
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
}),
'service'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Service']"
}),
'unit'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
,
'null'
:
'True'
}),
'uplimit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
})
'uplimit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
})
},
'im.resourcemetadata'
:
{
'Meta'
:
{
'object_name'
:
'ResourceMetadata'
},
...
...
snf-astakos-app/astakos/im/migrations/0018_auto__chg_field_approvalterms_date__chg_field_project_creation_date__c.py
View file @
b6552593
...
...
@@ -151,11 +151,11 @@ class Migration(SchemaMigration):
},
'im.astakosuserquota'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'user'),)"
,
'object_name'
:
'AstakosUserQuota'
},
'capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
}),
'user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.AstakosUser']"
})
},
...
...
@@ -258,13 +258,13 @@ class Migration(SchemaMigration):
'im.projectresourcegrant'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'project_application'),)"
,
'object_name'
:
'ProjectResourceGrant'
},
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'member_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_application'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.ProjectApplication']"
,
'null'
:
'True'
}),
'project_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
})
},
'im.resource'
:
{
...
...
@@ -276,7 +276,7 @@ class Migration(SchemaMigration):
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
}),
'service'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Service']"
}),
'unit'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
,
'null'
:
'True'
}),
'uplimit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
})
'uplimit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
})
},
'im.resourcemetadata'
:
{
'Meta'
:
{
'object_name'
:
'ResourceMetadata'
},
...
...
snf-astakos-app/astakos/im/migrations/0019_clear_service_auth_token.py
View file @
b6552593
...
...
@@ -102,11 +102,11 @@ class Migration(DataMigration):
},
'im.astakosuserquota'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'user'),)"
,
'object_name'
:
'AstakosUserQuota'
},
'capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
}),
'user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.AstakosUser']"
})
},
...
...
@@ -209,13 +209,13 @@ class Migration(DataMigration):
'im.projectresourcegrant'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'project_application'),)"
,
'object_name'
:
'ProjectResourceGrant'
},
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'member_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_application'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.ProjectApplication']"
,
'null'
:
'True'
}),
'project_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
})
},
'im.resource'
:
{
...
...
@@ -227,7 +227,7 @@ class Migration(DataMigration):
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
}),
'service'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Service']"
}),
'unit'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
,
'null'
:
'True'
}),
'uplimit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
})
'uplimit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
})
},
'im.resourcemetadata'
:
{
'Meta'
:
{
'object_name'
:
'ResourceMetadata'
},
...
...
snf-astakos-app/astakos/im/migrations/0020_auto.py
View file @
b6552593
...
...
@@ -103,11 +103,11 @@ class Migration(SchemaMigration):
},
'im.astakosuserquota'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'user'),)"
,
'object_name'
:
'AstakosUserQuota'
},
'capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
}),
'user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.AstakosUser']"
})
},
...
...
@@ -210,13 +210,13 @@ class Migration(SchemaMigration):
'im.projectresourcegrant'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'project_application'),)"
,
'object_name'
:
'ProjectResourceGrant'
},
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'member_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_application'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.ProjectApplication']"
,
'null'
:
'True'
}),
'project_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
})
},
'im.resource'
:
{
...
...
@@ -228,7 +228,7 @@ class Migration(SchemaMigration):
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
}),
'service'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Service']"
}),
'unit'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
,
'null'
:
'True'
}),
'uplimit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
})
'uplimit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
})
},
'im.resourcemetadata'
:
{
'Meta'
:
{
'object_name'
:
'ResourceMetadata'
},
...
...
snf-astakos-app/astakos/im/migrations/0021_auto__chg_field_project_name.py
View file @
b6552593
...
...
@@ -103,11 +103,11 @@ class Migration(SchemaMigration):
},
'im.astakosuserquota'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'user'),)"
,
'object_name'
:
'AstakosUserQuota'
},
'capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
}),
'user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.AstakosUser']"
})
},
...
...
@@ -210,13 +210,13 @@ class Migration(SchemaMigration):
'im.projectresourcegrant'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'project_application'),)"
,
'object_name'
:
'ProjectResourceGrant'
},
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'member_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_application'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.ProjectApplication']"
,
'null'
:
'True'
}),
'project_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
})
},
'im.resource'
:
{
...
...
@@ -228,7 +228,7 @@ class Migration(SchemaMigration):
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
}),
'service'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Service']"
}),
'unit'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
,
'null'
:
'True'
}),
'uplimit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
})
'uplimit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
})
},
'im.resourcemetadata'
:
{
'Meta'
:
{
'object_name'
:
'ResourceMetadata'
},
...
...
snf-astakos-app/astakos/im/migrations/0022_auto__chg_field_project_id__chg_field_projectapplication_chain.py
View file @
b6552593
...
...
@@ -124,11 +124,11 @@ class Migration(SchemaMigration):
},
'im.astakosuserquota'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'user'),)"
,
'object_name'
:
'AstakosUserQuota'
},
'capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
}),
'user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.AstakosUser']"
})
},
...
...
@@ -231,13 +231,13 @@ class Migration(SchemaMigration):
'im.projectresourcegrant'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'project_application'),)"
,
'object_name'
:
'ProjectResourceGrant'
},
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'member_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_application'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.ProjectApplication']"
,
'null'
:
'True'
}),
'project_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
})
},
'im.resource'
:
{
...
...
@@ -249,7 +249,7 @@ class Migration(SchemaMigration):
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
}),
'service'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Service']"
}),
'unit'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
,
'null'
:
'True'
}),
'uplimit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
})
'uplimit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
})
},
'im.resourcemetadata'
:
{
'Meta'
:
{
'object_name'
:
'ResourceMetadata'
},
...
...
snf-astakos-app/astakos/im/migrations/0023_auto__add_usersetting__add_unique_usersetting_user_setting.py
View file @
b6552593
...
...
@@ -115,11 +115,11 @@ class Migration(SchemaMigration):
},
'im.astakosuserquota'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'user'),)"
,
'object_name'
:
'AstakosUserQuota'
},
'capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
}),
'user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.AstakosUser']"
})
},
...
...
@@ -222,13 +222,13 @@ class Migration(SchemaMigration):
'im.projectresourcegrant'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'project_application'),)"
,
'object_name'
:
'ProjectResourceGrant'
},
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'member_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_application'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.ProjectApplication']"
,
'null'
:
'True'
}),
'project_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
})
},
'im.resource'
:
{
...
...
@@ -240,7 +240,7 @@ class Migration(SchemaMigration):
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
}),
'service'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Service']"
}),
'unit'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
,
'null'
:
'True'
}),
'uplimit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
})
'uplimit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
})
},
'im.resourcemetadata'
:
{
'Meta'
:
{
'object_name'
:
'ResourceMetadata'
},
...
...
snf-astakos-app/astakos/im/migrations/0024_auto__add_field_projectapplication_response.py
View file @
b6552593
...
...
@@ -103,11 +103,11 @@ class Migration(SchemaMigration):
},
'im.astakosuserquota'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'user'),)"
,
'object_name'
:
'AstakosUserQuota'
},
'capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
}),
'user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.AstakosUser']"
})
},
...
...
@@ -211,13 +211,13 @@ class Migration(SchemaMigration):
'im.projectresourcegrant'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'project_application'),)"
,
'object_name'
:
'ProjectResourceGrant'
},
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'member_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_application'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.ProjectApplication']"
,
'null'
:
'True'
}),
'project_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
})
},
'im.resource'
:
{
...
...
@@ -229,7 +229,7 @@ class Migration(SchemaMigration):
'name'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
}),
'service'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Service']"
}),
'unit'
:
(
'django.db.models.fields.CharField'
,
[],
{
'max_length'
:
'255'
,
'null'
:
'True'
}),
'uplimit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
})
'uplimit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
})
},
'im.resourcemetadata'
:
{
'Meta'
:
{
'object_name'
:
'ResourceMetadata'
},
...
...
snf-astakos-app/astakos/im/migrations/0025_auto__add_authproviderpolicyprofile.py
View file @
b6552593
...
...
@@ -141,11 +141,11 @@ class Migration(SchemaMigration):
},
'im.astakosuserquota'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'user'),)"
,
'object_name'
:
'AstakosUserQuota'
},
'capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'quantity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'0'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'resource'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.Resource']"
}),
'user'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.AstakosUser']"
})
},
...
...
@@ -268,13 +268,13 @@ class Migration(SchemaMigration):
'im.projectresourcegrant'
:
{
'Meta'
:
{
'unique_together'
:
"(('resource', 'project_application'),)"
,
'object_name'
:
'ProjectResourceGrant'
},
'id'
:
(
'django.db.models.fields.AutoField'
,
[],
{
'primary_key'
:
'True'
}),
'member_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'member_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_application'
:
(
'django.db.models.fields.related.ForeignKey'
,
[],
{
'to'
:
"orm['im.ProjectApplication']"
,
'null'
:
'True'
}),
'project_capacity'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
ynnef
o.lib.db.
intdecimal
field.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_capacity'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_export_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),
'project_import_limit'
:
(
's
nf_djang
o.lib.db.field
s
.IntDecimalField'
,
[],
{
'default'
:
'100000000000000000000000000000000L'
,
'max_digits'
:
'38'
,
'decimal_places'
:
'0'
}),