20180404090939_create_data_files.rb 245 B

1234567891011
  1. class CreateDataFiles < ActiveRecord::Migration[5.1]
  2. def change
  3. create_table :data_files do |t|
  4. t.string :name
  5. t.references :repository, index: true, polymorphic: true
  6. t.string :uuid
  7. t.timestamps
  8. end
  9. end
  10. end