diff options
| author | Zog | 2018-03-16 13:04:38 +0100 | 
|---|---|---|
| committer | Johan Van Ryseghem | 2018-04-04 11:12:34 +0200 | 
| commit | 6d15b7ec25592dc34cd95c738ef0854fdd1b94d2 (patch) | |
| tree | 29660f2f43956e39fe00ee2dadde4d7d234a4c56 /db/migrate | |
| parent | f0f619353c23775613fe154cb40d54cb55c979bb (diff) | |
| download | chouette-core-6d15b7ec25592dc34cd95c738ef0854fdd1b94d2.tar.bz2 | |
Refs #6196; Add Custom Fields to companies
Diffstat (limited to 'db/migrate')
| -rw-r--r-- | db/migrate/20180316115003_add_custom_field_values_to_companies.rb | 5 | 
1 files changed, 5 insertions, 0 deletions
| diff --git a/db/migrate/20180316115003_add_custom_field_values_to_companies.rb b/db/migrate/20180316115003_add_custom_field_values_to_companies.rb new file mode 100644 index 000000000..1791a6970 --- /dev/null +++ b/db/migrate/20180316115003_add_custom_field_values_to_companies.rb @@ -0,0 +1,5 @@ +class AddCustomFieldValuesToCompanies < ActiveRecord::Migration +  def change +    add_column :companies, :custom_field_values, :json +  end +end | 
