public SchemaBuilder DropTable(string name)
        {
            var deleteTable = new DropTableCommand(String.Concat(_formatPrefix(_featurePrefix), name));

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