mirror of https://github.com/ErsatzTV/ErsatzTV.git
15 changed files with 3027 additions and 13 deletions
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,24 @@
@@ -0,0 +1,24 @@
|
||||
using Microsoft.EntityFrameworkCore.Migrations; |
||||
|
||||
namespace ErsatzTV.Infrastructure.Migrations |
||||
{ |
||||
public partial class Add_ChannelWatermarkOpacity : Migration |
||||
{ |
||||
protected override void Up(MigrationBuilder migrationBuilder) |
||||
{ |
||||
migrationBuilder.AddColumn<int>( |
||||
name: "Opacity", |
||||
table: "ChannelWatermark", |
||||
type: "INTEGER", |
||||
nullable: false, |
||||
defaultValue: 100); |
||||
} |
||||
|
||||
protected override void Down(MigrationBuilder migrationBuilder) |
||||
{ |
||||
migrationBuilder.DropColumn( |
||||
name: "Opacity", |
||||
table: "ChannelWatermark"); |
||||
} |
||||
} |
||||
} |
||||
Loading…
Reference in new issue