Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
Database
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
GitLab 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
Database
Commits
1c862458
Commit
1c862458
authored
5 years ago
by
Benedikt Heinrichs
Browse files
Options
Downloads
Patches
Plain Diff
Fix: Adjustment to the Logging Table
parent
7bbc0961
No related branches found
No related tags found
No related merge requests found
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/Migrator/Migrations/Migration202001071100ExtendLogging.cs
+26
-0
26 additions, 0 deletions
...Migrator/Migrations/Migration202001071100ExtendLogging.cs
src/Migrator/Migrator.csproj
+1
-0
1 addition, 0 deletions
src/Migrator/Migrator.csproj
with
27 additions
and
0 deletions
src/Migrator/Migrations/Migration202001071100ExtendLogging.cs
0 → 100644
+
26
−
0
View file @
1c862458
using
FluentMigrator
;
using
System
;
using
System.IO
;
using
System.Linq
;
using
System.Reflection
;
using
System.Xml
;
using
System.Xml.Linq
;
namespace
Coscine.Database.Migration.Migrations
{
//yyyymmddhhmm
[
Migration
(
202001071100
)]
public
class
Migration202001071100ExtendLogging
:
FluentMigrator
.
Migration
{
public
override
void
Down
()
{
Alter
.
Column
(
"Message"
).
OnTable
(
"Log"
).
AsString
(
500
).
Nullable
();
}
public
override
void
Up
()
{
Alter
.
Column
(
"Message"
).
OnTable
(
"Log"
).
AsString
(
Int32
.
MaxValue
).
Nullable
();
}
}
}
\ No newline at end of file
This diff is collapsed.
Click to expand it.
src/Migrator/Migrator.csproj
+
1
−
0
View file @
1c862458
...
@@ -160,6 +160,7 @@
...
@@ -160,6 +160,7 @@
<Compile
Include=
"Migrations\Migration201912060900BucketApplication.cs"
/>
<Compile
Include=
"Migrations\Migration201912060900BucketApplication.cs"
/>
<Compile
Include=
"Migrations\Migration201912091553ShibbolethAddition.cs"
/>
<Compile
Include=
"Migrations\Migration201912091553ShibbolethAddition.cs"
/>
<Compile
Include=
"Migrations\Migration201911121400Logging.cs"
/>
<Compile
Include=
"Migrations\Migration201911121400Logging.cs"
/>
<Compile
Include=
"Migrations\Migration202001071100ExtendLogging.cs"
/>
<Compile
Include=
"Migrator.cs"
/>
<Compile
Include=
"Migrator.cs"
/>
<Compile
Include=
"Program.cs"
/>
<Compile
Include=
"Program.cs"
/>
<Compile
Include=
"Properties\AssemblyInfo.cs"
/>
<Compile
Include=
"Properties\AssemblyInfo.cs"
/>
...
...
This diff is collapsed.
Click to expand it.
CoscineBot
@CoscineBot
mentioned in commit
78d35ec4
·
5 years ago
mentioned in commit
78d35ec4
mentioned in commit 78d35ec421bf40666d9e42d23a51ece0c8dff2e4
Toggle commit list
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