| 1234567891011121314151617181920212223242526272829303132333435 |
- using System;
- using Microsoft.EntityFrameworkCore.Migrations;
-
- namespace MVCTemplate.Data.Migrations
- {
- public partial class MessageExpiryDate : Migration
- {
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<DateTime>(
- name: "ExpiryDate",
- table: "Messages",
- type: "datetime2",
- nullable: true);
-
- migrationBuilder.AddColumn<bool>(
- name: "IsValid",
- table: "Messages",
- type: "bit",
- nullable: false,
- defaultValue: false);
- }
-
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropColumn(
- name: "ExpiryDate",
- table: "Messages");
-
- migrationBuilder.DropColumn(
- name: "IsValid",
- table: "Messages");
- }
- }
- }
|