Files
Aaru/Aaru.Database/Migrations/20191207184342_AddRemoteStats.cs

49 lines
2.0 KiB
C#
Raw Normal View History

2019-12-07 18:50:53 +00:00
using Microsoft.EntityFrameworkCore.Migrations;
2020-02-27 00:33:26 +00:00
namespace Aaru.Database.Migrations
2019-12-07 18:50:53 +00:00
{
public partial class AddRemoteStats : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.CreateTable("RemoteApplications", table => new
{
Id = table.Column<int>().Annotation("Sqlite:Autoincrement", true),
Name = table.Column<string>(nullable: true), Version = table.Column<string>(nullable: true),
Synchronized = table.Column<bool>(), Count = table.Column<ulong>()
}, constraints: table =>
{
table.PrimaryKey("PK_RemoteApplications", x => x.Id);
});
migrationBuilder.CreateTable("RemoteArchitectures", table => new
{
Id = table.Column<int>().Annotation("Sqlite:Autoincrement", true),
Name = table.Column<string>(nullable: true), Synchronized = table.Column<bool>(),
Count = table.Column<ulong>()
}, constraints: table =>
{
table.PrimaryKey("PK_RemoteArchitectures", x => x.Id);
});
migrationBuilder.CreateTable("RemoteOperatingSystems", table => new
{
Id = table.Column<int>().Annotation("Sqlite:Autoincrement", true),
Name = table.Column<string>(nullable: true), Version = table.Column<string>(nullable: true),
Synchronized = table.Column<bool>(), Count = table.Column<ulong>()
}, constraints: table =>
{
table.PrimaryKey("PK_RemoteOperatingSystems", x => x.Id);
});
}
protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropTable("RemoteApplications");
migrationBuilder.DropTable("RemoteArchitectures");
migrationBuilder.DropTable("RemoteOperatingSystems");
}
}
}