summaryrefslogtreecommitdiff
path: root/db/migrate/20150207151759_create_file_reports.rb
blob: 63a1702cbba55b083b36ec67dc2b29e60ed281e1 (plain)
1
2
3
4
5
6
7
8
9
10
class CreateFileReports < ActiveRecord::Migration
  def change
    create_table :file_reports, id: :uuid, default: 'uuid_generate_v4()' do |t|
      t.uuid :disposition_id
      t.json :data

      t.timestamps null: false
    end
  end
end