Files
codeocean/db/migrate/20140922161226_add_weight_to_files.rb

6 lines
116 B
Ruby

class AddWeightToFiles < ActiveRecord::Migration[4.2]
def change
add_column :files, :weight, :float
end
end