diff options
| author | Zakaria BOUZIANE | 2015-03-05 10:38:46 +0100 |
|---|---|---|
| committer | Zakaria BOUZIANE | 2015-03-05 10:38:46 +0100 |
| commit | 0c783035b05031f6f2cd574398151a0f45d18ac6 (patch) | |
| tree | af5b323d85dbb2bb68a8dfa0faedf1acc05e7020 /db | |
| parent | 18a4f9ca2b747218d2cb1ad23283f4096dba4656 (diff) | |
| download | chouette-core-0c783035b05031f6f2cd574398151a0f45d18ac6.tar.bz2 | |
Data Format Constraints Integration : Neptune, Netex, GTFS or HUB
Diffstat (limited to 'db')
4 files changed, 20 insertions, 0 deletions
diff --git a/db/migrate/20150304084602_remove_hub_restrictions_from_referentials.rb b/db/migrate/20150304084602_remove_hub_restrictions_from_referentials.rb new file mode 100644 index 000000000..354203603 --- /dev/null +++ b/db/migrate/20150304084602_remove_hub_restrictions_from_referentials.rb @@ -0,0 +1,5 @@ +class RemoveHubRestrictionsFromReferentials < ActiveRecord::Migration + def change + remove_column :referentials, :hub_restrictions + end +end diff --git a/db/migrate/20150304084646_remove_hub_restrictions_by_default_from_organisations.rb b/db/migrate/20150304084646_remove_hub_restrictions_by_default_from_organisations.rb new file mode 100644 index 000000000..daa79707b --- /dev/null +++ b/db/migrate/20150304084646_remove_hub_restrictions_by_default_from_organisations.rb @@ -0,0 +1,5 @@ +class RemoveHubRestrictionsByDefaultFromOrganisations < ActiveRecord::Migration + def change + remove_column :organisations, :hub_restrictions_by_default + end +end diff --git a/db/migrate/20150304090707_add_data_format_to_referentials.rb b/db/migrate/20150304090707_add_data_format_to_referentials.rb new file mode 100644 index 000000000..5d5df65d5 --- /dev/null +++ b/db/migrate/20150304090707_add_data_format_to_referentials.rb @@ -0,0 +1,5 @@ +class AddDataFormatToReferentials < ActiveRecord::Migration + def change + add_column :referentials, :data_format, :string + end +end diff --git a/db/migrate/20150304090743_add_data_format_to_organisations.rb b/db/migrate/20150304090743_add_data_format_to_organisations.rb new file mode 100644 index 000000000..2222c0b08 --- /dev/null +++ b/db/migrate/20150304090743_add_data_format_to_organisations.rb @@ -0,0 +1,5 @@ +class AddDataFormatToOrganisations < ActiveRecord::Migration + def change + add_column :organisations, :data_format, :string + end +end |
