24 lines
524 B
Ruby
24 lines
524 B
Ruby
|
# == Schema Information
|
||
|
#
|
||
|
# Table name: windows
|
||
|
#
|
||
|
# id :integer not null, primary key
|
||
|
# channel_id :integer
|
||
|
# position :integer
|
||
|
# created_at :datetime
|
||
|
# updated_at :datetime
|
||
|
# html :text
|
||
|
# col :integer
|
||
|
# title :string(255)
|
||
|
# wtype :string(255)
|
||
|
# name :string(255)
|
||
|
# type :string(255)
|
||
|
# private_flag :boolean default(FALSE)
|
||
|
# show_flag :boolean default(TRUE)
|
||
|
#
|
||
|
|
||
|
class PluginWindow < Window
|
||
|
relate_to_details
|
||
|
end
|
||
|
|