MigSharp.Providers.RecordingProvider.ExistsTable C# (CSharp) Method

ExistsTable() private method

private ExistsTable ( string databaseName, TableName tableName ) : string
databaseName string
tableName MigSharp.Core.TableName
return string
        public string ExistsTable(string databaseName, TableName tableName)
        {
            // ExistsTable is a special case: it must be supported by all providers as it is used to create
            // the versioning table. Also, it is only a querying method.
            return null;
        }