Files
nadekobot/src/NadekoBot/Db/Models/CommandAlias.cs
Kwoth 1ca8f188cd - Removed all migrations, added squash instead which will build the database, prerequisite for this migration to be skipped is to be on the latest version of 2.x before moving over
- Added cleanup migration, it will clean the ef migration history, and delete unused fields
- Started working on README.md
2021-09-06 21:34:49 +02:00

9 lines
193 B
C#

namespace NadekoBot.Services.Database.Models
{
public class CommandAlias : DbEntity
{
public string Trigger { get; set; }
public string Mapping { get; set; }
}
}