diff --git a/infrastructure/NDB.Infrastructure.DatabaseMigration/NDB.Infrastructure.DatabaseMigration.csproj b/infrastructure/NDB.Infrastructure.DatabaseMigration/NDB.Infrastructure.DatabaseMigration.csproj index 8b37f46..d25cd70 100644 --- a/infrastructure/NDB.Infrastructure.DatabaseMigration/NDB.Infrastructure.DatabaseMigration.csproj +++ b/infrastructure/NDB.Infrastructure.DatabaseMigration/NDB.Infrastructure.DatabaseMigration.csproj @@ -2,7 +2,7 @@ net5.0 - Add database migration service + Database migration service https://dev.azure.com/tstanciu94/NDB https://dev.azure.com/tstanciu94/NDB Git diff --git a/test/NDB.Test.Application/Class1.cs b/test/NDB.Test.Application/Class1.cs deleted file mode 100644 index d86fb85..0000000 --- a/test/NDB.Test.Application/Class1.cs +++ /dev/null @@ -1,8 +0,0 @@ -using System; - -namespace NDB.Test.Application -{ - public class Class1 - { - } -} diff --git a/test/NDB.Test.Application/NDB.Test.Application.csproj b/test/NDB.Test.Application/NDB.Test.Application.csproj deleted file mode 100644 index ad22449..0000000 --- a/test/NDB.Test.Application/NDB.Test.Application.csproj +++ /dev/null @@ -1,16 +0,0 @@ - - - - net5.0 - - - - - PreserveNewest - - - PreserveNewest - - - - diff --git a/test/NDB.Test.Application/Scripts/1.0.0/01.Create table MimeType.sql b/test/NDB.Test.Application/Scripts/1.0.0/01.Create table MimeType.sql deleted file mode 100644 index 7fe815b..0000000 --- a/test/NDB.Test.Application/Scripts/1.0.0/01.Create table MimeType.sql +++ /dev/null @@ -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'; \ No newline at end of file diff --git a/test/NDB.Test.Application/Scripts/1.0.1/04.Create table Settings.sql b/test/NDB.Test.Application/Scripts/1.0.1/04.Create table Settings.sql deleted file mode 100644 index 992e517..0000000 --- a/test/NDB.Test.Application/Scripts/1.0.1/04.Create table Settings.sql +++ /dev/null @@ -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'; \ No newline at end of file