using Microsoft.EntityFrameworkCore.Migrations; #nullable disable namespace SistemaGestionAcademias.Migrations { /// public partial class ModuloConfiguracion : Migration { /// protected override void Up(MigrationBuilder migrationBuilder) { migrationBuilder.CreateTable( name: "Configuraciones", columns: table => new { Id = table.Column(type: "int", nullable: false) .Annotation("SqlServer:Identity", "1, 1"), NombreEmpresa = table.Column(type: "nvarchar(max)", nullable: false), Direccion = table.Column(type: "nvarchar(max)", nullable: true), Telefono = table.Column(type: "nvarchar(max)", nullable: true), CorreoContacto = table.Column(type: "nvarchar(max)", nullable: true), MonedaSimbolo = table.Column(type: "nvarchar(max)", nullable: false), ZonaHorariaId = table.Column(type: "nvarchar(max)", nullable: false), LogoUrl = table.Column(type: "nvarchar(max)", nullable: true) }, constraints: table => { table.PrimaryKey("PK_Configuraciones", x => x.Id); }); } /// protected override void Down(MigrationBuilder migrationBuilder) { migrationBuilder.DropTable( name: "Configuraciones"); } } }