Update DB to version 21: Have full introduction date for machines, not only year.

This commit is contained in:
2018-04-28 21:29:01 +01:00
parent fd0b55dee1
commit 349a941392
13 changed files with 256 additions and 57 deletions

View File

@@ -28,6 +28,8 @@
// Copyright © 2003-2018 Natalia Portillo
*******************************************************************************/
using System;
namespace Cicm.Database.Schemas
{
/// <summary>Computer</summary>
@@ -37,11 +39,11 @@ namespace Cicm.Database.Schemas
public int Company;
/// <summary>ID</summary>
public int Id;
/// <summary>Introduction date, null if unknown, 1000 if prototype</summary>
public DateTime Introduced;
/// <summary>Model name</summary>
public string Model;
/// <summary>Machine type</summary>
public MachineType Type;
/// <summary>Introduction date, 0 if unknown, 1000 if prototype</summary>
public int Year;
}
}