| 123456789101112131415161718192021222324252627282930313233343536373839 |
- #nullable disable
- using System;
- using Microsoft.EntityFrameworkCore.Migrations;
- namespace Content.Server.Database.Migrations.Sqlite
- {
- /// <inheritdoc />
- public partial class RoundStartDate : Migration
- {
- /// <inheritdoc />
- protected override void Up(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.AddColumn<DateTime>(
- name: "start_date",
- table: "round",
- type: "TEXT",
- nullable: false,
- defaultValue: new DateTime(1, 1, 1, 0, 0, 0, 0, DateTimeKind.Unspecified));
- migrationBuilder.CreateIndex(
- name: "IX_round_start_date",
- table: "round",
- column: "start_date");
- }
- /// <inheritdoc />
- protected override void Down(MigrationBuilder migrationBuilder)
- {
- migrationBuilder.DropIndex(
- name: "IX_round_start_date",
- table: "round");
- migrationBuilder.DropColumn(
- name: "start_date",
- table: "round");
- }
- }
- }
|