Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add asl video3 #412

Merged
merged 3 commits into from
Nov 8, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,887 changes: 1,887 additions & 0 deletions ClassTranscribeDatabase/Migrations/20231011192212_aslvideo3.Designer.cs

Large diffs are not rendered by default.

82 changes: 82 additions & 0 deletions ClassTranscribeDatabase/Migrations/20231011192212_aslvideo3.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,82 @@
using Microsoft.EntityFrameworkCore.Migrations;

namespace ClassTranscribeDatabase.Migrations
{
public partial class aslvideo3 : Migration
{
protected override void Up(MigrationBuilder migrationBuilder)
{
migrationBuilder.AddColumn<string>(
name: "ASLVideoId",
table: "Videos",
nullable: true);

migrationBuilder.AddColumn<string>(
name: "ProcessedASLVideoId",
table: "Videos",
nullable: true);

migrationBuilder.AddColumn<string>(
name: "ProcessingLog",
table: "Videos",
nullable: true);

migrationBuilder.CreateIndex(
name: "IX_Videos_ASLVideoId",
table: "Videos",
column: "ASLVideoId");

migrationBuilder.CreateIndex(
name: "IX_Videos_ProcessedASLVideoId",
table: "Videos",
column: "ProcessedASLVideoId");

migrationBuilder.AddForeignKey(
name: "FK_Videos_FileRecords_ASLVideoId",
table: "Videos",
column: "ASLVideoId",
principalTable: "FileRecords",
principalColumn: "Id",
onDelete: ReferentialAction.Restrict);

migrationBuilder.AddForeignKey(
name: "FK_Videos_FileRecords_ProcessedASLVideoId",
table: "Videos",
column: "ProcessedASLVideoId",
principalTable: "FileRecords",
principalColumn: "Id",
onDelete: ReferentialAction.Restrict);
}

protected override void Down(MigrationBuilder migrationBuilder)
{
migrationBuilder.DropForeignKey(
name: "FK_Videos_FileRecords_ASLVideoId",
table: "Videos");

migrationBuilder.DropForeignKey(
name: "FK_Videos_FileRecords_ProcessedASLVideoId",
table: "Videos");

migrationBuilder.DropIndex(
name: "IX_Videos_ASLVideoId",
table: "Videos");

migrationBuilder.DropIndex(
name: "IX_Videos_ProcessedASLVideoId",
table: "Videos");

migrationBuilder.DropColumn(
name: "ASLVideoId",
table: "Videos");

migrationBuilder.DropColumn(
name: "ProcessedASLVideoId",
table: "Videos");

migrationBuilder.DropColumn(
name: "ProcessingLog",
table: "Videos");
}
}
}
Loading