我有数据库:
class CreateDataintables < ActiveRecord::Migration
def change
create_table :windows do |t|
t.string :window
t.timestamps
end
create_table :channels do |t|
t.integer :channel
t.integer :data
t.belongs_to :window
t.timestamps
end
end
end
Althougth我读过导轨指南,我不知道该怎么做。我想创建一些“窗口”窗口&#39;在表格&#39; windows&#39;然后我想在表格频道中创建89个频道,其中包含89个数据 - &gt;桌子上的1个窗口&#39; windows&#39;将有89个频道。最后,我想从中创建/读取数据。