socialforge/db/migrate/20140522025721_create_bug_t...

11 lines
221 B
Ruby
Raw Normal View History

class CreateBugToOsps < ActiveRecord::Migration
def change
create_table :bug_to_osps do |t|
t.integer :osp_id
t.integer :relative_memo_id
t.string :description
t.timestamps
end
end
end