PecanProject / bety

Web-interface to the Biofuel Ecophysiological Traits and Yields Database (used by PEcAn and TERRA REF)
https://www.betydb.org
BSD 3-Clause "New" or "Revised" License
16 stars 38 forks source link

NA strings field for formats record #518

Open bcow opened 7 years ago

bcow commented 7 years ago

Add a text field to BETY formats that stores NA strings separated by commas.

Maybe something like this?

class AddNA_stringsformats < ActiveRecord::Migration
  def up
    add_column :formats, :NA_strings, :text,  :null => false
  end

  def down
    remove_column :formats, :NA_strings
  end
end
dlebauer commented 7 years ago

@bcow could you submit this as a pull request?