diff options
| author | Zog | 2018-04-30 14:40:04 +0200 |
|---|---|---|
| committer | Zog | 2018-05-07 15:03:07 +0200 |
| commit | d041b6b07cc2b9c2b48e6da929c8d7f1e0ec8bca (patch) | |
| tree | 478d23c89c857c38b009604ef4fcbf1193eb8f2f /db/migrate | |
| parent | af49fd1021ee6b22fd8ca6c6592c5f7d64c23aa0 (diff) | |
| download | chouette-core-d041b6b07cc2b9c2b48e6da929c8d7f1e0ec8bca.tar.bz2 | |
Add import_compliance_control_sets to Workgroups
And rename resource methods for better consistency
Diffstat (limited to 'db/migrate')
| -rw-r--r-- | db/migrate/20180430122530_add_import_compliance_control_sets_to_workgroups.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20180430122530_add_import_compliance_control_sets_to_workgroups.rb b/db/migrate/20180430122530_add_import_compliance_control_sets_to_workgroups.rb new file mode 100644 index 000000000..2fc7c8e3f --- /dev/null +++ b/db/migrate/20180430122530_add_import_compliance_control_sets_to_workgroups.rb @@ -0,0 +1,5 @@ +class AddImportComplianceControlSetsToWorkgroups < ActiveRecord::Migration + def change + add_column :workgroups, :import_compliance_control_set_ids, :integer, array: true, default: [] + end +end |
