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

            Run(deleteTable);
            return(this);
        }
 public void Visit(DropTableCommand command) {
 }
Example #3
0
 public SchemaBuilder DropTable(string name) {
     var deleteTable = new DropTableCommand(String.Concat(_formatPrefix(_featurePrefix), name));
     Run(deleteTable);
     return this;
 }
 public override void Visit(DropTableCommand command) {
     _output.WriteLine("Dropping table {0}", command.Name);
 }
 public abstract 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);");
 }