diff options
| author | Marc Florisson | 2013-05-27 11:48:18 +0200 |
|---|---|---|
| committer | Marc Florisson | 2013-05-27 11:48:18 +0200 |
| commit | 01b38ce952cb2e657ab387295673fc892be3539a (patch) | |
| tree | 45595bc8188816dcfb7ee6285fe99137f38412f1 /db | |
| parent | baf4983fce9de9f1d4b8b288f23c39ef86f51e69 (diff) | |
| download | chouette-core-01b38ce952cb2e657ab387295673fc892be3539a.tar.bz2 | |
put geoportail api key in config
Diffstat (limited to 'db')
| -rw-r--r-- | db/migrate/20130527074101_remove_geoportail_key_from_organisation.rb | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/db/migrate/20130527074101_remove_geoportail_key_from_organisation.rb b/db/migrate/20130527074101_remove_geoportail_key_from_organisation.rb new file mode 100644 index 000000000..616587f7a --- /dev/null +++ b/db/migrate/20130527074101_remove_geoportail_key_from_organisation.rb @@ -0,0 +1,9 @@ +class RemoveGeoportailKeyFromOrganisation < ActiveRecord::Migration + def up + remove_column :organisations, :geoportail_key + end + + def down + add_column :organisations, :geoportail_key, :string + end +end |
