mirror of
https://gitlab2.federez.net/re2o/re2o
synced 2024-11-22 03:13:12 +00:00
Recolle les fixations ensemble
This commit is contained in:
parent
5dc59035f5
commit
ed91cdcfe5
3 changed files with 10 additions and 2 deletions
|
@ -120,3 +120,11 @@ Don't forget to run migrations, several settings previously in the `preferences`
|
|||
in their own Payment models.
|
||||
|
||||
To have a closer look on how the payments works, please go to the wiki.
|
||||
|
||||
## MR xxx: Add role models
|
||||
|
||||
Adds the Role model.
|
||||
You need to ensure that your database character set is utf-8.
|
||||
```sql
|
||||
ALTER DATABASE re2o CHARACTER SET utf8;
|
||||
```
|
||||
|
|
|
@ -9,7 +9,7 @@ import re2o.mixins
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('machines', '0082_auto_20180621_1524'),
|
||||
('machines', '0083_remove_duplicate_rights'),
|
||||
]
|
||||
|
||||
operations = [
|
|
@ -8,7 +8,7 @@ from django.db import migrations, models
|
|||
class Migration(migrations.Migration):
|
||||
|
||||
dependencies = [
|
||||
('machines', '0093_merge_20180710_0226'),
|
||||
('machines', '0084_role'),
|
||||
]
|
||||
|
||||
operations = [
|
Loading…
Reference in a new issue