Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
intranet
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2
Issues
2
List
Boards
Labels
Service Desk
Milestones
Merge Requests
0
Merge Requests
0
Operations
Operations
Incidents
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nounous-archives
intranet
Commits
e42b8b55
Commit
e42b8b55
authored
Jun 24, 2017
by
Gabriel Detraz
Committed by
root
Jun 24, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Migrations diverses inexistantes
parent
a53563c7
Changes
4
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
81 additions
and
0 deletions
+81
-0
association_wiki/migrations/0001_initial.py
association_wiki/migrations/0001_initial.py
+26
-0
association_wiki/migrations/__init__.py
association_wiki/migrations/__init__.py
+0
-0
solde/migrations/0003_auto_20170624_1716.py
solde/migrations/0003_auto_20170624_1716.py
+35
-0
user_settings/migrations/0002_auto_20170624_1716.py
user_settings/migrations/0002_auto_20170624_1716.py
+20
-0
No files found.
association_wiki/migrations/0001_initial.py
0 → 100644
View file @
e42b8b55
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2017-06-24 15:16
from
__future__
import
unicode_literals
from
django.conf
import
settings
from
django.db
import
migrations
,
models
import
django.db.models.deletion
class
Migration
(
migrations
.
Migration
):
initial
=
True
dependencies
=
[
(
'auth'
,
'0008_alter_user_username_max_length'
),
]
operations
=
[
migrations
.
CreateModel
(
name
=
'WikiName'
,
fields
=
[
(
'user'
,
models
.
OneToOneField
(
on_delete
=
django
.
db
.
models
.
deletion
.
CASCADE
,
primary_key
=
True
,
serialize
=
False
,
to
=
settings
.
AUTH_USER_MODEL
)),
(
'name'
,
models
.
CharField
(
max_length
=
255
,
null
=
True
)),
],
),
]
association_wiki/migrations/__init__.py
0 → 100644
View file @
e42b8b55
solde/migrations/0003_auto_20170624_1716.py
0 → 100644
View file @
e42b8b55
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2017-06-24 15:16
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'solde'
,
'0002_transaction_created'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'transaction'
,
name
=
'created'
,
field
=
models
.
DateTimeField
(
auto_now_add
=
True
,
help_text
=
'Date de cr
\xe9
ation'
),
),
migrations
.
AlterField
(
model_name
=
'transaction'
,
name
=
'oldSolde'
,
field
=
models
.
FloatField
(
default
=
0.0
,
help_text
=
"Solde de l'adh
\xe9
rent avant le rechargement"
),
),
migrations
.
AlterField
(
model_name
=
'transaction'
,
name
=
'uid'
,
field
=
models
.
CharField
(
default
=-
1
,
help_text
=
'UID ayant effectu
\xe9
la transaction'
,
max_length
=
256
),
),
migrations
.
AlterField
(
model_name
=
'transaction'
,
name
=
'valid'
,
field
=
models
.
NullBooleanField
(
help_text
=
"Indique l'
\xe9
tat de la transaction (NULL=en cours;True=effectu
\xe9
e;False=non effectu
\xe9
e)"
),
),
]
user_settings/migrations/0002_auto_20170624_1716.py
0 → 100644
View file @
e42b8b55
# -*- coding: utf-8 -*-
# Generated by Django 1.10.7 on 2017-06-24 15:16
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'user_settings'
,
'0001_initial'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'usersettings'
,
name
=
'langue'
,
field
=
models
.
CharField
(
choices
=
[(
b
'fr'
,
'Fran
\xe7
ais'
),
(
b
'en'
,
'Anglais'
),
(
b
'es'
,
'Espagnol'
)],
max_length
=
2
,
verbose_name
=
'langue'
),
),
]
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