thingspeak/db/migrate/20120213011639_add_html_to_window.rb

10 lines
167 B
Ruby
Raw Normal View History

class AddHtmlToWindow < ActiveRecord::Migration
def self.up
add_column :windows, :html, :text
end
def self.down
remove_column :windows, :html
end
end