Files
codeocean/db/migrate/20141031161603_add_path_to_files.rb

6 lines
108 B
Ruby

class AddPathToFiles < ActiveRecord::Migration
def change
add_column :files, :path, :string
end
end