thingspeak/db/migrate/20120213011639_add_html_to_window.rb
2014-02-17 12:05:39 -05:00

10 lines
167 B
Ruby

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