HealthMonitoring.Persistence.MySqlDatabase.CreateHealthMonitorTypesTable C# (CSharp) 메소드

CreateHealthMonitorTypesTable() 개인적인 메소드

private CreateHealthMonitorTypesTable ( IDbConnection conn ) : void
conn IDbConnection
리턴 void
        private void CreateHealthMonitorTypesTable(IDbConnection conn)
        {
            conn.Execute("create table HealthMonitorTypes(MonitorType varchar(256) primary key)");
        }