diff options
| author | cedricnjanga | 2017-09-28 16:44:20 +0200 | 
|---|---|---|
| committer | cedricnjanga | 2017-09-28 18:13:37 +0200 | 
| commit | f15636295c48a012566806995e74c7d9dff2600a (patch) | |
| tree | ebe85b77f23255f59a2fc99295369fc9e44a5252 | |
| parent | 9c64fa920c50683eb87debf8a10c223da9096b30 (diff) | |
| download | chouette-core-f15636295c48a012566806995e74c7d9dff2600a.tar.bz2 | |
Refs #4625 Add status to ComplianceCheckMessage
| -rw-r--r-- | db/migrate/20170928144257_add_status_to_compliance_check_message.rb | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/db/migrate/20170928144257_add_status_to_compliance_check_message.rb b/db/migrate/20170928144257_add_status_to_compliance_check_message.rb new file mode 100644 index 000000000..bb4101229 --- /dev/null +++ b/db/migrate/20170928144257_add_status_to_compliance_check_message.rb @@ -0,0 +1,5 @@ +class AddStatusToComplianceCheckMessage < ActiveRecord::Migration +  def change +    add_column :compliance_check_messages, :status, :string +  end +end | 
