Files
codeocean/db/migrate/20140922161226_add_weight_to_files.rb
2021-05-14 22:03:06 +02:00

8 lines
147 B
Ruby

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