Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
CoopStarter Data
Project overview
Project overview
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
3
Issues
3
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Packages
Packages
Container Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
Startin blox
A
applications
Coop Starter
CoopStarter Data
Commits
542475d2
Commit
542475d2
authored
Oct 11, 2019
by
Benoit Alessandroni
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removing migrations
parent
1d774735
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
0 additions
and
287 deletions
+0
-287
coopstarter_data/migrations/0001_initial.py
coopstarter_data/migrations/0001_initial.py
+0
-227
coopstarter_data/migrations/0002_auto_20191004_1106.py
coopstarter_data/migrations/0002_auto_20191004_1106.py
+0
-20
coopstarter_data/migrations/0003_auto_20191009_0922.py
coopstarter_data/migrations/0003_auto_20191009_0922.py
+0
-20
coopstarter_data/migrations/0004_auto_20191009_0926.py
coopstarter_data/migrations/0004_auto_20191009_0926.py
+0
-20
No files found.
coopstarter_data/migrations/0001_initial.py
deleted
100644 → 0
View file @
1d774735
This diff is collapsed.
Click to expand it.
coopstarter_data/migrations/0002_auto_20191004_1106.py
deleted
100644 → 0
View file @
1d774735
# -*- coding: utf-8 -*-
# Generated by Django 1.11.24 on 2019-10-04 11:06
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'coopstarter_data'
,
'0001_initial'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'request'
,
name
=
'status'
,
field
=
models
.
TextField
(
choices
=
[(
'untreated'
,
'Untreated'
),
(
'dealt-with'
,
'Dealt With'
)],
default
=
'untreated'
,
verbose_name
=
'Status'
),
),
]
coopstarter_data/migrations/0003_auto_20191009_0922.py
deleted
100644 → 0
View file @
1d774735
# -*- coding: utf-8 -*-
# Generated by Django 1.11.24 on 2019-10-09 09:22
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'coopstarter_data'
,
'0002_auto_20191004_1106'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'request'
,
name
=
'status'
,
field
=
models
.
TextField
(
choices
=
[(
'pending'
,
'Pending'
),
(
'validated'
,
'Validated'
)],
default
=
'pending'
,
verbose_name
=
'Status'
),
),
]
coopstarter_data/migrations/0004_auto_20191009_0926.py
deleted
100644 → 0
View file @
1d774735
# -*- coding: utf-8 -*-
# Generated by Django 1.11.24 on 2019-10-09 09:26
from
__future__
import
unicode_literals
from
django.db
import
migrations
,
models
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'coopstarter_data'
,
'0003_auto_20191009_0922'
),
]
operations
=
[
migrations
.
AlterField
(
model_name
=
'request'
,
name
=
'status'
,
field
=
models
.
CharField
(
choices
=
[(
'pending'
,
'Pending'
),
(
'validated'
,
'Validated'
)],
default
=
'pending'
,
max_length
=
32
,
verbose_name
=
'Status'
),
),
]
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