Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
beat.web
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
beat
beat.web
Merge requests
!201
[databases] Add missing ordering requirements for back-ups
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
[databases] Add missing ordering requirements for back-ups
issue_433
into
master
Overview
0
Commits
1
Pipelines
0
Changes
2
Merged
André Anjos
requested to merge
issue_433
into
master
8 years ago
Overview
0
Commits
1
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
master
master (base)
and
latest version
latest version
a6f654eb
1 commit,
8 years ago
2 files
+
25
−
1
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
beat/web/databases/migrations/0003_auto_20160630_1710.py
0 → 100644
+
19
−
0
Options
# -*- coding: utf-8 -*-
# Generated by Django 1.9.5 on 2016-06-30 17:10
from
__future__
import
unicode_literals
from
django.db
import
migrations
class
Migration
(
migrations
.
Migration
):
dependencies
=
[
(
'
databases
'
,
'
0002_scheduler_addons
'
),
]
operations
=
[
migrations
.
AlterModelOptions
(
name
=
'
database
'
,
options
=
{
'
ordering
'
:
[
'
previous_version_id
'
,
'
fork_of_id
'
,
'
id
'
]},
),
]
Loading