using System; using Microsoft.EntityFrameworkCore.Migrations; namespace tb320eva.Migrations { public partial class sylinder : Migration { protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "eva_salary_cylinder", columns: table => new { id = table.Column(nullable: false), created = table.Column(nullable: false), updated = table.Column(nullable: false), isActive = table.Column(nullable: false), position_type = table.Column(nullable: true), position_level = table.Column(nullable: true), temporary_min = table.Column(nullable: true), themin = table.Column(nullable: true), themax = table.Column(nullable: true), middle = table.Column(nullable: true), cost_living = table.Column(nullable: true) }, constraints: table => { table.PrimaryKey("PK_eva_salary_cylinder", x => x.id); }); } protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "eva_salary_cylinder"); } } }