-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #139 from MrSmoke/release/1.2.2
1.2.2
- Loading branch information
Showing
12 changed files
with
54 additions
and
37 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
<Solution> | ||
<Folder Name="/Tests/"> | ||
<Project Path="test\TeaTime.Common.Tests\TeaTime.Common.Tests.csproj" /> | ||
<Project Path="test\TeaTime.Data.MySql.Tests\TeaTime.Data.MySql.Tests.csproj" /> | ||
<Project Path="test\TeaTime.Slack.Tests\TeaTime.Slack.Tests.csproj" /> | ||
</Folder> | ||
<Folder Name="/_Build/"> | ||
<File Path=".github\workflows\dev-release.yaml" /> | ||
<File Path=".github\workflows\master-release.yaml" /> | ||
</Folder> | ||
<Folder Name="/_Solution Items/"> | ||
<File Path=".editorconfig" /> | ||
<File Path="LICENSE" /> | ||
<File Path="README.md" /> | ||
<File Path=".dockerignore" /> | ||
<File Path="Dockerfile" /> | ||
<File Path="Directory.Build.props" /> | ||
</Folder> | ||
<Project Path="src\TeaTime.Common\TeaTime.Common.csproj" /> | ||
<Project Path="src\TeaTime.Data.MySql\TeaTime.Data.MySql.csproj" /> | ||
<Project Path="src\TeaTime.Slack\TeaTime.Slack.csproj" /> | ||
<Project Path="src\TeaTime\TeaTime.csproj" /> | ||
</Solution> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,13 @@ | ||
alter table `options` | ||
add column deleted boolean default 0, | ||
add column deletedDate datetime default null, | ||
add column activeName VARCHAR(40) AS (IF(deleted = 0, name, NULL)), | ||
drop index `idx_options_name`, | ||
add unique `idx_options_name` (`groupId`, `name`, (IF(deleted,null,1))); | ||
add unique `idx_options_name` (`groupId`, `activeName`); | ||
|
||
alter table `option_groups` | ||
add column deleted boolean default 0, | ||
add column deletedDate datetime default null, | ||
add column activeName VARCHAR(40) AS (IF(deleted = 0, name, NULL)), | ||
drop index `idx_optiongroups_name`, | ||
add unique `idx_optiongroups_name` (`roomId`, `name`, (IF(deleted,null,1))); | ||
add unique `idx_optiongroups_name` (`roomId`, `activeName`); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
<Project Sdk="Microsoft.NET.Sdk"> | ||
|
||
<ItemGroup> | ||
<PackageReference Include="MediatR" Version="12.3.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="8.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="8.0.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Options" Version="8.0.2" /> | ||
<PackageReference Include="System.Text.Json" Version="8.0.3" /> | ||
<PackageReference Include="MediatR" Version="12.4.1" /> | ||
<PackageReference Include="Microsoft.Extensions.Caching.Abstractions" Version="9.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="9.0.0" /> | ||
<PackageReference Include="Microsoft.Extensions.Options" Version="9.0.0" /> | ||
<PackageReference Include="System.Text.Json" Version="9.0.0" /> | ||
</ItemGroup> | ||
|
||
</Project> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters