-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
34 changed files
with
16,004 additions
and
20,518 deletions.
There are no files selected for viewing
2,132 changes: 2,132 additions & 0 deletions
2,132
...ervice.Orleans.Blazor.Server.Host/Migrations/20240730112808_UpgradedToAbp_8_2.Designer.cs
Large diffs are not rendered by default.
Oops, something went wrong.
57 changes: 57 additions & 0 deletions
57
....BookingService.Orleans.Blazor.Server.Host/Migrations/20240730112808_UpgradedToAbp_8_2.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,57 @@ | ||
using System; | ||
using Microsoft.EntityFrameworkCore.Migrations; | ||
|
||
#nullable disable | ||
|
||
namespace EasyAbp.BookingService.Blazor.Server.Host.Migrations | ||
{ | ||
/// <inheritdoc /> | ||
public partial class UpgradedToAbp_8_2 : Migration | ||
{ | ||
/// <inheritdoc /> | ||
protected override void Up(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.CreateTable( | ||
name: "AbpSessions", | ||
columns: table => new | ||
{ | ||
Id = table.Column<Guid>(type: "uniqueidentifier", nullable: false), | ||
SessionId = table.Column<string>(type: "nvarchar(128)", maxLength: 128, nullable: false), | ||
Device = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: false), | ||
DeviceInfo = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: true), | ||
TenantId = table.Column<Guid>(type: "uniqueidentifier", nullable: true), | ||
UserId = table.Column<Guid>(type: "uniqueidentifier", nullable: false), | ||
ClientId = table.Column<string>(type: "nvarchar(64)", maxLength: 64, nullable: true), | ||
IpAddresses = table.Column<string>(type: "nvarchar(256)", maxLength: 256, nullable: true), | ||
SignedIn = table.Column<DateTime>(type: "datetime2", nullable: false), | ||
LastAccessed = table.Column<DateTime>(type: "datetime2", nullable: true) | ||
}, | ||
constraints: table => | ||
{ | ||
table.PrimaryKey("PK_AbpSessions", x => x.Id); | ||
}); | ||
|
||
migrationBuilder.CreateIndex( | ||
name: "IX_AbpSessions_Device", | ||
table: "AbpSessions", | ||
column: "Device"); | ||
|
||
migrationBuilder.CreateIndex( | ||
name: "IX_AbpSessions_SessionId", | ||
table: "AbpSessions", | ||
column: "SessionId"); | ||
|
||
migrationBuilder.CreateIndex( | ||
name: "IX_AbpSessions_TenantId_UserId", | ||
table: "AbpSessions", | ||
columns: new[] { "TenantId", "UserId" }); | ||
} | ||
|
||
/// <inheritdoc /> | ||
protected override void Down(MigrationBuilder migrationBuilder) | ||
{ | ||
migrationBuilder.DropTable( | ||
name: "AbpSessions"); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Empty file modified
0
...okingService.Orleans.Blazor.Server.Host/wwwroot/libs/timeago/locales/jquery.timeago.uz.js
100644 → 100755
Empty file.
Oops, something went wrong.