11 lines
451 B
SQL
11 lines
451 B
SQL
-- ============================================================
|
|
-- EF Migrations Rebase Script - Remote Dev Server
|
|
-- Replaces all old migration history entries with single Baseline
|
|
-- NO schema changes are made - data is untouched
|
|
-- ============================================================
|
|
|
|
DELETE FROM [__EFMigrationsHistory];
|
|
|
|
INSERT INTO [__EFMigrationsHistory] ([MigrationId], [ProductVersion])
|
|
VALUES ('20260316155002_Baseline', '8.0.11');
|