sinsoku/ponytail

View on GitHub
app/assets/javascripts/ponytail/models/command/rename_table_command.coffee

Summary

Maintainability
Test Coverage
class Ponytail.Models.RenameTableCommand
  constructor: (@tableName, @newName) ->

  toString: ->
    new Ponytail.Models.Command("rename_table", ":#{@tableName}", ":#{@newName}")