thingspeak/app/models/plugin_window_detail.rb
2014-02-17 12:05:39 -05:00

17 lines
345 B
Ruby

# == Schema Information
#
# Table name: plugin_window_details
#
# id :integer not null, primary key
# plugin_id :integer
# plugin_window_id :integer
# created_at :datetime
# updated_at :datetime
#
class PluginWindowDetail < ActiveRecord::Base
belongs_to :plugin_window
belongs_to :plugin
end