Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
M
Migrations
Manage
Activity
Members
Labels
Plan
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
This is an archived project. Repository and other project resources are read-only.
Show more breadcrumbs
Coscine
backend
libraries
Migrations
Commits
8483dd62
Commit
8483dd62
authored
2 years ago
by
Hanna Führ
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'remotes/origin/dev' into Issue/2265-UpdatingS3EndpointUDE
parents
923e4bd6
15b42c83
No related branches found
No related tags found
No related merge requests found
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Migrations/Migrations/Migration202210180955GitlabResourceRenamed.cs
+25
-0
25 additions, 0 deletions
.../Migrations/Migration202210180955GitlabResourceRenamed.cs
with
25 additions
and
0 deletions
src/Migrations/Migrations/Migration202210180955GitlabResourceRenamed.cs
0 → 100644
+
25
−
0
View file @
8483dd62
using
FluentMigrator
;
namespace
Coscine.Migrations.Migrations
{
//yyyymmddhhmm
[
Migration
(
202210180955
)]
public
class
Migration202210180955GitlabResourceRenamed
:
Migration
{
public
override
void
Down
()
{
Update
.
Table
(
"ResourceTypes"
)
.
Set
(
new
{
SpecificType
=
"gitlabrwth"
})
.
Where
(
new
{
SpecificType
=
"gitlab"
});
}
public
override
void
Up
()
{
Update
.
Table
(
"ResourceTypes"
)
.
Set
(
new
{
SpecificType
=
"gitlab"
})
.
Where
(
new
{
SpecificType
=
"gitlabrwth"
});
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment