1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/db/migrate/20160726111509_add_user_to_export.rb
Sylvain 4d2f46ca95 [feature] Async statistics export to XLSX
- fix tests due to removal of event_categories
- rake task for generating statistics
2016-07-27 11:28:54 +02:00

6 lines
137 B
Ruby

class AddUserToExport < ActiveRecord::Migration
def change
add_reference :exports, :user, index: true, foreign_key: true
end
end