 48323d68b0
			
		
	
	48323d68b0
	
	
	
		
			
			* get rid of file handling through grpc and signalr * fix upload on controller * adapt usersetpairpermissions * send user perms * server-side fixes * rework file upload * adjust log level to debug in docker standalone json * update dependencies --------- Co-authored-by: rootdarkarchon <root.darkarchon@outlook.com>
		
			
				
	
	
		
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			41 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| using Microsoft.EntityFrameworkCore.Migrations;
 | |
| 
 | |
| #nullable disable
 | |
| 
 | |
| namespace MareSynchronosServer.Migrations
 | |
| {
 | |
|     /// <inheritdoc />
 | |
|     public partial class UserPerms : Migration
 | |
|     {
 | |
|         /// <inheritdoc />
 | |
|         protected override void Up(MigrationBuilder migrationBuilder)
 | |
|         {
 | |
|             migrationBuilder.AddColumn<bool>(
 | |
|                 name: "disable_animations",
 | |
|                 table: "client_pairs",
 | |
|                 type: "boolean",
 | |
|                 nullable: false,
 | |
|                 defaultValue: false);
 | |
| 
 | |
|             migrationBuilder.AddColumn<bool>(
 | |
|                 name: "disable_sounds",
 | |
|                 table: "client_pairs",
 | |
|                 type: "boolean",
 | |
|                 nullable: false,
 | |
|                 defaultValue: false);
 | |
|         }
 | |
| 
 | |
|         /// <inheritdoc />
 | |
|         protected override void Down(MigrationBuilder migrationBuilder)
 | |
|         {
 | |
|             migrationBuilder.DropColumn(
 | |
|                 name: "disable_animations",
 | |
|                 table: "client_pairs");
 | |
| 
 | |
|             migrationBuilder.DropColumn(
 | |
|                 name: "disable_sounds",
 | |
|                 table: "client_pairs");
 | |
|         }
 | |
|     }
 | |
| }
 |