public override void Visit(DropTableCommand command) { _output.WriteLine("Dropping table {0}", command.Name); }
public abstract void Visit(DropTableCommand command);
public SchemaBuilder DropTable(string name) { var deleteTable = new DropTableCommand(String.Concat(_formatPrefix(_featurePrefix), name)); Run(deleteTable); return this; }