Skip to content

Commit

Permalink
- Renaming method
Browse files Browse the repository at this point in the history
  • Loading branch information
marcio-santos-zocdoc committed Dec 12, 2016
1 parent b5de691 commit c011b90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion console/Create.cs
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public override int Run(string[] remainingArguments) {
};

try {
createCommand.CreateDatabases(DatabaseFilesPath);
createCommand.CreateDatabase(DatabaseFilesPath);
createCommand.CreateTables(DatabaseFilesPath);
} catch (BatchSqlFileException ex) {
_logger.Log(TraceLevel.Info, Environment.NewLine + "Create completed with the following errors:");
Expand Down
2 changes: 1 addition & 1 deletion model/Command/CreateCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
namespace SchemaZen.Library.Command {
public class CreateCommand : BaseCommand {

public void CreateDatabases(string databaseFilesPath)
public void CreateDatabase(string databaseFilesPath)
{
var db = CreateDatabase();
if (!Directory.Exists(db.Dir))
Expand Down

0 comments on commit c011b90

Please sign in to comment.