Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Coscine
backend
libraries
Migrations
Commits
d5ccb413
Commit
d5ccb413
authored
Oct 27, 2020
by
L. Ellenbeck
Browse files
WIP: added Description column Topic/1125-apiTokens
parent
6d8764fb
Changes
4
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
src/Migrations.Tests/Properties/AssemblyInfo.cs
View file @
d5ccb413
...
...
@@ -11,6 +11,6 @@ using System.Reflection;
[
assembly
:
AssemblyProduct
(
"Migrations.Tests"
)]
[
assembly
:
AssemblyVersion
(
"1.8.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.8.0"
)]
[
assembly
:
AssemblyInformationalVersion
(
"1.8.0-topic-1125-apito000
1
"
)]
[
assembly
:
AssemblyInformationalVersion
(
"1.8.0-topic-1125-apito000
2
"
)]
[
assembly
:
AssemblyCopyright
(
"2020 IT Center, RWTH Aachen University"
)]
src/Migrations/Migrations/Migration202010271100ApiTokens.cs
View file @
d5ccb413
...
...
@@ -16,6 +16,7 @@ namespace Coscine.Migrations.Migrations
Create
.
Table
(
"ApiTokens"
)
.
WithColumn
(
"Id"
).
AsGuid
().
PrimaryKey
().
WithDefault
(
SystemMethods
.
NewGuid
)
.
WithColumn
(
"Token"
).
AsString
().
NotNullable
()
.
WithColumn
(
"Description"
).
AsString
().
NotNullable
()
.
WithColumn
(
"UserId"
).
AsGuid
().
NotNullable
()
.
WithColumn
(
"Creation"
).
AsDateTime
().
NotNullable
()
.
WithColumn
(
"Expiration"
).
AsDateTime
().
NotNullable
();
...
...
src/Migrations/Properties/AssemblyInfo.cs
View file @
d5ccb413
...
...
@@ -11,6 +11,6 @@ using System.Reflection;
[
assembly
:
AssemblyProduct
(
"Migrations"
)]
[
assembly
:
AssemblyVersion
(
"1.8.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.8.0"
)]
[
assembly
:
AssemblyInformationalVersion
(
"1.8.0-topic-1125-apito000
1
"
)]
[
assembly
:
AssemblyInformationalVersion
(
"1.8.0-topic-1125-apito000
2
"
)]
[
assembly
:
AssemblyCopyright
(
"2020 IT Center, RWTH Aachen University"
)]
src/Migrator/Properties/AssemblyInfo.cs
View file @
d5ccb413
...
...
@@ -11,6 +11,6 @@ using System.Reflection;
[
assembly
:
AssemblyProduct
(
"Migrator"
)]
[
assembly
:
AssemblyVersion
(
"1.8.0"
)]
[
assembly
:
AssemblyFileVersion
(
"1.8.0"
)]
[
assembly
:
AssemblyInformationalVersion
(
"1.8.0-topic-1125-apito000
1
"
)]
[
assembly
:
AssemblyInformationalVersion
(
"1.8.0-topic-1125-apito000
2
"
)]
[
assembly
:
AssemblyCopyright
(
"2020 IT Center, RWTH Aachen University"
)]
Write
Preview
Supports
Markdown
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