removed unused project

messaging
Tudor Stanciu 2022-02-16 19:13:11 +02:00
parent f9bb922c01
commit b3333429da
5 changed files with 1 additions and 56 deletions

View File

@ -2,7 +2,7 @@
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
<Description>Add database migration service</Description>
<Description>Database migration service</Description>
<PackageProjectUrl>https://dev.azure.com/tstanciu94/NDB</PackageProjectUrl>
<RepositoryUrl>https://dev.azure.com/tstanciu94/NDB</RepositoryUrl>
<RepositoryType>Git</RepositoryType>

View File

@ -1,8 +0,0 @@
using System;
namespace NDB.Test.Application
{
public class Class1
{
}
}

View File

@ -1,16 +0,0 @@
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<TargetFramework>net5.0</TargetFramework>
</PropertyGroup>
<ItemGroup>
<None Update="Scripts\1.0.0\01.Create table MimeType.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
<None Update="Scripts\1.0.1\04.Create table Settings.sql">
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
</None>
</ItemGroup>
</Project>

View File

@ -1,18 +0,0 @@
CREATE TABLE "MimeType" (
"MimeTypeId" INTEGER NOT NULL,
"MimeTypeCode" TEXT NOT NULL UNIQUE,
"MimeTypeName" TEXT NOT NULL,
CONSTRAINT "PK_MimeType" PRIMARY KEY("MimeTypeId" AUTOINCREMENT)
);
INSERT INTO MimeType(MimeTypeId, MimeTypeCode, MimeTypeName)
SELECT 1, '.jpeg', 'image/jpeg' UNION
SELECT 2, '.jpg','image/jpeg' UNION
SELECT 3, '.png','image/png' UNION
SELECT 4, '.bmp','image/bmp' UNION
SELECT 5, '.gif','image/gif' UNION
SELECT 6, '.tif','image/tiff' UNION
SELECT 7, '.tiff','image/tiff' UNION
SELECT 8, '.xml','text/xml' UNION
SELECT 9, '.txt','text/plain' UNION
SELECT 10, '.json','application/json';

View File

@ -1,13 +0,0 @@
CREATE TABLE "Settings" (
"Id" INTEGER NOT NULL,
"Code" TEXT NOT NULL UNIQUE,
"Name" TEXT NOT NULL,
"Description" TEXT,
"Context" TEXT NOT NULL,
CONSTRAINT "PK_Settings" PRIMARY KEY("Id" AUTOINCREMENT)
);
INSERT INTO Settings(Id, Code, Name, Context)
SELECT 1, 'THEME', 'Application theme', 'USER' UNION
SELECT 2, 'LANGUAGE', 'Application language', 'USER' UNION
SELECT 3, 'NOTIFICATIONS_POSITION', 'Notifications position', 'USER';