mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-31 04:04:21 -04:00
Fix ratings migration default value
This commit is contained in:
parent
3386263fbe
commit
1769aa45c9
@ -88,12 +88,14 @@ namespace Kyoo.Postgresql.Migrations
|
|||||||
name: "rating",
|
name: "rating",
|
||||||
table: "shows",
|
table: "shows",
|
||||||
type: "integer",
|
type: "integer",
|
||||||
|
defaultValue: 0,
|
||||||
nullable: false);
|
nullable: false);
|
||||||
|
|
||||||
migrationBuilder.AddColumn<int>(
|
migrationBuilder.AddColumn<int>(
|
||||||
name: "rating",
|
name: "rating",
|
||||||
table: "movies",
|
table: "movies",
|
||||||
type: "integer",
|
type: "integer",
|
||||||
|
defaultValue: 0,
|
||||||
nullable: false);
|
nullable: false);
|
||||||
|
|
||||||
migrationBuilder.AddColumn<int>(
|
migrationBuilder.AddColumn<int>(
|
||||||
|
Loading…
x
Reference in New Issue
Block a user