Sha256: a1c09e89182eb8a5ba33f5afc735711e6f2a867ca835983ce14b67b68b57db53

Contents?: true

Size: 306 Bytes

Versions: 1

Compression:

Stored size: 306 Bytes

Contents

Ponytail.Models.RenameTableCommand = function(tableName, newName) {
  this.tableName = tableName;
  this.newName = newName;
};
Ponytail.Models.RenameTableCommand.prototype = {
  toString: function() {
    return new Ponytail.Models.Command("rename_table", ":" + this.tableName, ":" + this.newName);
  }
};

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
ponytail-0.3.0 app/assets/javascripts/ponytail/models/rename_table_command.js