6 lines
129 B
Ruby
6 lines
129 B
Ruby
class AddCatToTimeContent < ActiveRecord::Migration
|
|
def change
|
|
add_column :time_contents, :category_id, :integer
|
|
end
|
|
end
|