diff options
| author | Danail Dimitrov <danaildimitrov321@gmail.com> | 2021-04-07 20:02:36 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-04-07 20:02:36 +0300 |
| commit | bc3d341d0390a7367a9f7b901dcc3cb93ac1247c (patch) | |
| tree | e0663d2ece9f8124ff58de7a565944092f67003a /src/Data/DevHive.Data | |
| parent | da7d6223c261aac8e8f18458c11fb48cf9ca4cfe (diff) | |
| parent | 5595bf9abe7b3d495f36ef39cfa5236dbde86039 (diff) | |
| download | DevHive-bc3d341d0390a7367a9f7b901dcc3cb93ac1247c.tar DevHive-bc3d341d0390a7367a9f7b901dcc3cb93ac1247c.tar.gz DevHive-bc3d341d0390a7367a9f7b901dcc3cb93ac1247c.zip | |
Merge pull request #26 from Team-Kaleidoscope/friends_functionality
Added "Add Friend" & "Remove Friend" functionality and endpoints
Diffstat (limited to 'src/Data/DevHive.Data')
| -rw-r--r-- | src/Data/DevHive.Data/ConnectionString.json | 6 | ||||
| -rw-r--r-- | src/Data/DevHive.Data/Migrations/20210407161947_Initial_migration.Designer.cs (renamed from src/Data/DevHive.Data/Migrations/20210328161726_Profile_Pic_Property_Alter.Designer.cs) | 6 | ||||
| -rw-r--r-- | src/Data/DevHive.Data/Migrations/20210407161947_Initial_migration.cs (renamed from src/Data/DevHive.Data/Migrations/20210328161726_Profile_Pic_Property_Alter.cs) | 2 | ||||
| -rw-r--r-- | src/Data/DevHive.Data/Migrations/DevHiveContextModelSnapshot.cs | 2 |
4 files changed, 8 insertions, 8 deletions
diff --git a/src/Data/DevHive.Data/ConnectionString.json b/src/Data/DevHive.Data/ConnectionString.json index 1281a1c..ec065d1 100644 --- a/src/Data/DevHive.Data/ConnectionString.json +++ b/src/Data/DevHive.Data/ConnectionString.json @@ -1,5 +1,5 @@ { - "ConnectionStrings": { - "DEV": "Server=localhost;Port=5432;Database=DevHive_API;User Id=postgres;Password=password;" - } + "ConnectionStrings": { + "DEV": "Server=localhost;Port=5432;Database=DevHive_API;User Id=postgres;Password=;" + } } diff --git a/src/Data/DevHive.Data/Migrations/20210328161726_Profile_Pic_Property_Alter.Designer.cs b/src/Data/DevHive.Data/Migrations/20210407161947_Initial_migration.Designer.cs index a3fcb2d..34c8300 100644 --- a/src/Data/DevHive.Data/Migrations/20210328161726_Profile_Pic_Property_Alter.Designer.cs +++ b/src/Data/DevHive.Data/Migrations/20210407161947_Initial_migration.Designer.cs @@ -10,15 +10,15 @@ using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; namespace DevHive.Data.Migrations { [DbContext(typeof(DevHiveContext))] - [Migration("20210328161726_Profile_Pic_Property_Alter")] - partial class Profile_Pic_Property_Alter + [Migration("20210407161947_Initial_migration")] + partial class Initial_migration { protected override void BuildTargetModel(ModelBuilder modelBuilder) { #pragma warning disable 612, 618 modelBuilder .HasAnnotation("Relational:MaxIdentifierLength", 63) - .HasAnnotation("ProductVersion", "5.0.3") + .HasAnnotation("ProductVersion", "5.0.4") .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn); modelBuilder.Entity("DevHive.Data.Models.Comment", b => diff --git a/src/Data/DevHive.Data/Migrations/20210328161726_Profile_Pic_Property_Alter.cs b/src/Data/DevHive.Data/Migrations/20210407161947_Initial_migration.cs index 5aca664..841c94d 100644 --- a/src/Data/DevHive.Data/Migrations/20210328161726_Profile_Pic_Property_Alter.cs +++ b/src/Data/DevHive.Data/Migrations/20210407161947_Initial_migration.cs @@ -4,7 +4,7 @@ using Npgsql.EntityFrameworkCore.PostgreSQL.Metadata; namespace DevHive.Data.Migrations { - public partial class Profile_Pic_Property_Alter : Migration + public partial class Initial_migration : Migration { protected override void Up(MigrationBuilder migrationBuilder) { diff --git a/src/Data/DevHive.Data/Migrations/DevHiveContextModelSnapshot.cs b/src/Data/DevHive.Data/Migrations/DevHiveContextModelSnapshot.cs index 242473b..c451979 100644 --- a/src/Data/DevHive.Data/Migrations/DevHiveContextModelSnapshot.cs +++ b/src/Data/DevHive.Data/Migrations/DevHiveContextModelSnapshot.cs @@ -16,7 +16,7 @@ namespace DevHive.Data.Migrations #pragma warning disable 612, 618 modelBuilder .HasAnnotation("Relational:MaxIdentifierLength", 63) - .HasAnnotation("ProductVersion", "5.0.3") + .HasAnnotation("ProductVersion", "5.0.4") .HasAnnotation("Npgsql:ValueGenerationStrategy", NpgsqlValueGenerationStrategy.IdentityByDefaultColumn); modelBuilder.Entity("DevHive.Data.Models.Comment", b => |
