Inheritance: SchemaCommand
コード例 #1
0
 public override void Visit(DropTableCommand command)
 {
     _output.WriteLine("Dropping table {0}", command.Name);
 }
コード例 #2
0
 public abstract void Visit(DropTableCommand command);
コード例 #3
0
ファイル: SchemaBuilder.cs プロジェクト: Kendry06/Gymnastika
 public SchemaBuilder DropTable(string name)
 {
     var deleteTable = new DropTableCommand(String.Concat(_formatPrefix(_featurePrefix), name));
     Run(deleteTable);
     return this;
 }