diff options
| author | Luc Donnet | 2018-02-27 23:45:02 +0100 |
|---|---|---|
| committer | GitHub | 2018-02-27 23:45:02 +0100 |
| commit | 59761d65be29ce7d1d9c72140e657b994cd28258 (patch) | |
| tree | dc53b6318cc8c3749b77d677798d949c06b32b08 /db/migrate | |
| parent | ccbb8172d1e2463890d4138dae307e5526393cee (diff) | |
| parent | 81329be5b2662706cf32db000adba27d176e44b8 (diff) | |
| download | chouette-core-59761d65be29ce7d1d9c72140e657b994cd28258.tar.bz2 | |
Merge pull request #339 from af83/5878-fix-ComplianceChecksController-show
5878 Add ComplianceCheck#show
Diffstat (limited to 'db/migrate')
| -rw-r--r-- | db/migrate/20180227151937_add_compliance_control_name_to_compliance_checks.rb | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/db/migrate/20180227151937_add_compliance_control_name_to_compliance_checks.rb b/db/migrate/20180227151937_add_compliance_control_name_to_compliance_checks.rb new file mode 100644 index 000000000..49ab0da11 --- /dev/null +++ b/db/migrate/20180227151937_add_compliance_control_name_to_compliance_checks.rb @@ -0,0 +1,5 @@ +class AddComplianceControlNameToComplianceChecks < ActiveRecord::Migration + def change + add_column :compliance_checks, :compliance_control_name, :string + end +end |
