devin.zhu@doverfs.com 6d8f446b50 初始 vor 1 Jahr
..
Configuration 6d8f446b50 初始 vor 1 Jahr
Database 6d8f446b50 初始 vor 1 Jahr
IndustryStandardInterface 6d8f446b50 初始 vor 1 Jahr
Licensing 6d8f446b50 初始 vor 1 Jahr
Migrations 6d8f446b50 初始 vor 1 Jahr
Parser 6d8f446b50 初始 vor 1 Jahr
Processor 6d8f446b50 初始 vor 1 Jahr
UniversalApi 6d8f446b50 初始 vor 1 Jahr
Edge.Core.csproj 6d8f446b50 初始 vor 1 Jahr
ExtentionMethod.cs 6d8f446b50 初始 vor 1 Jahr
readMe_for_database.txt 6d8f446b50 初始 vor 1 Jahr

readMe_for_database.txt

=====how to manually fix an untracked db on track by EF-CORE=====

1. Firstly, Copy the original database file for backup!!!

2. Open db by SQLite DB browser.
3. Check the table: __EFMigrationsHistory MUST NOT exists, if exists, stop and contact administrator?
4. Create a table by sql command:
CREATE TABLE "__EFMigrationsHistory" ( "MigrationId" TEXT NOT NULL CONSTRAINT "PK___EFMigrationsHistory" PRIMARY KEY, "ProductVersion" TEXT NOT NULL )
4. Insert a(or some, if you understand what u a doing) fake migration record by sql command:
Insert into __EFMigrationsHistory values('20180626102740_InitialCreate', '3.1.1')

5. Write changes and exit database editing in SQLite DB browser.