Skip to content

Commit

Permalink
change property order
Browse files Browse the repository at this point in the history
  • Loading branch information
brockallen committed Nov 23, 2020
1 parent 48bfdc6 commit 34860cb
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -375,7 +375,7 @@ CREATE UNIQUE INDEX [IX_IdentityResources_Name] ON [IdentityResources] ([Name]);
GO

INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
VALUES (N'20201120205009_Configuration', N'3.1.0');
VALUES (N'20201123190954_Configuration', N'3.1.0');

GO

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ CREATE TABLE [Keys] (
[Created] datetime2 NOT NULL,
[Algorithm] nvarchar(100) NOT NULL,
[IsX509Certificate] bit NOT NULL,
[Data] nvarchar(max) NOT NULL,
[DataProtected] bit NOT NULL,
[Data] nvarchar(max) NOT NULL,
CONSTRAINT [PK_Keys] PRIMARY KEY ([Id])
);

Expand Down Expand Up @@ -74,7 +74,7 @@ CREATE INDEX [IX_PersistedGrants_SubjectId_SessionId_Type] ON [PersistedGrants]
GO

INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
VALUES (N'20201120205004_Grants', N'3.1.0');
VALUES (N'20201123190949_Grants', N'3.1.0');

GO

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ protected override void Up(MigrationBuilder migrationBuilder)
Created = table.Column<DateTime>(nullable: false),
Algorithm = table.Column<string>(maxLength: 100, nullable: false),
IsX509Certificate = table.Column<bool>(nullable: false),
Data = table.Column<string>(nullable: false),
DataProtected = table.Column<bool>(nullable: false)
DataProtected = table.Column<bool>(nullable: false),
Data = table.Column<string>(nullable: false)
},
constraints: table =>
{
Expand Down
2 changes: 1 addition & 1 deletion src/EntityFramework.Storage/src/Entities/Key.cs
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class Key
public DateTime Created { get; set; }
public string Algorithm { get; set; }
public bool IsX509Certificate { get; set; }
public string Data { get; set; }
public bool DataProtected { get; set; }
public string Data { get; set; }
}
}

0 comments on commit 34860cb

Please sign in to comment.