mirror of
https://github.com/RaidMax/IW4M-Admin.git
synced 2025-06-07 13:48:00 -05:00
10 lines
256 B
C#
10 lines
256 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
|
|
namespace Data.Extensions
|
|
{
|
|
public static class MigrationExtensions
|
|
{
|
|
public static bool IsMigration => Environment.GetEnvironmentVariable("ASPNETCORE_ENVIRONMENT") == "Migration";
|
|
}
|
|
} |