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

8 lines
144 B
Ruby

# frozen_string_literal: true
class AddPathToFiles < ActiveRecord::Migration[4.2]
def change
add_column :files, :path, :string
end
end