Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
P
picodata
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Container Registry
Model registry
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
core
picodata
Merge requests
!344
Add Migrations space and picolib.add_migration() handle
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Add Migrations space and picolib.add_migration() handle
124-add-migration
into
master
Overview
14
Commits
1
Pipelines
7
Changes
4
Merged
Valentin Syrovatskiy
requested to merge
124-add-migration
into
master
2 years ago
Overview
14
Commits
1
Pipelines
7
Changes
4
Expand
Relates #124
next mr:
!346 (merged)
Edited
2 years ago
by
Valentin Syrovatskiy
0
0
Merge request reports
Compare
master
version 7
47f71f18
2 years ago
version 6
ea980832
2 years ago
version 5
66cacdef
2 years ago
version 4
deea74cc
2 years ago
version 3
54e34f1c
2 years ago
version 2
0d0f2750
2 years ago
version 1
0d0f2750
2 years ago
master (base)
and
latest version
latest version
e6a0946b
1 commit,
2 years ago
version 7
47f71f18
1 commit,
2 years ago
version 6
ea980832
1 commit,
2 years ago
version 5
66cacdef
1 commit,
2 years ago
version 4
deea74cc
2 commits,
2 years ago
version 3
54e34f1c
2 commits,
2 years ago
version 2
0d0f2750
3 commits,
2 years ago
version 1
0d0f2750
3 commits,
2 years ago
4 files
+
78
−
2
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
4
Search (e.g. *.vue) (Ctrl+P)
src/traft/mod.rs
+
10
−
0
Options
@@ -984,3 +984,13 @@ impl<'a> IntoIterator for &'a FailureDomain {
self
.data
.iter
()
}
}
////////////////////////////////////////////////////////////////////////////////
/// Migration
#[derive(Clone,
Debug,
Serialize,
Deserialize,
PartialEq,
Eq)]
pub
struct
Migration
{
pub
id
:
u64
,
pub
body
:
String
,
}
impl
Encode
for
Migration
{}
Loading