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),
|
2020-07-20 04:34:16 +01:00
|
|
|
|
Name = table.Column<string>(nullable: true),
|
|
|
|
|
|
Version = table.Column<string>(nullable: true),
|
|
|
|
|
|
Synchronized = table.Column<bool>(),
|
|
|
|
|
|
Count = table.Column<ulong>()
|
2020-07-22 13:20:25 +01:00
|
|
|
|
}, constraints: table => table.PrimaryKey("PK_RemoteApplications", x => x.Id));
|
2019-12-07 18:50:53 +00:00
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable("RemoteArchitectures", table => new
|
|
|
|
|
|
{
|
2020-07-20 04:34:16 +01:00
|
|
|
|
Id = table.Column<int>().Annotation("Sqlite:Autoincrement", true),
|
|
|
|
|
|
Name = table.Column<string>(nullable: true),
|
|
|
|
|
|
Synchronized = table.Column<bool>(),
|
|
|
|
|
|
Count = table.Column<ulong>()
|
2020-07-22 13:20:25 +01:00
|
|
|
|
}, constraints: table => table.PrimaryKey("PK_RemoteArchitectures", x => x.Id));
|
2019-12-07 18:50:53 +00:00
|
|
|
|
|
|
|
|
|
|
migrationBuilder.CreateTable("RemoteOperatingSystems", table => new
|
|
|
|
|
|
{
|
|
|
|
|
|
Id = table.Column<int>().Annotation("Sqlite:Autoincrement", true),
|
2020-07-20 04:34:16 +01:00
|
|
|
|
Name = table.Column<string>(nullable: true),
|
|
|
|
|
|
Version = table.Column<string>(nullable: true),
|
|
|
|
|
|
Synchronized = table.Column<bool>(),
|
|
|
|
|
|
Count = table.Column<ulong>()
|
2020-07-22 13:20:25 +01:00
|
|
|
|
}, constraints: table => table.PrimaryKey("PK_RemoteOperatingSystems", x => x.Id));
|
2019-12-07 18:50:53 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
protected override void Down(MigrationBuilder migrationBuilder)
|
|
|
|
|
|
{
|
|
|
|
|
|
migrationBuilder.DropTable("RemoteApplications");
|
|
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable("RemoteArchitectures");
|
|
|
|
|
|
|
|
|
|
|
|
migrationBuilder.DropTable("RemoteOperatingSystems");
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|