diff options
| -rw-r--r-- | db/migrate/20171109101358_drop_table_journey_pattern_sections.rb | 5 | ||||
| -rw-r--r-- | db/migrate/20171109101514_drop_table_route_sections.rb | 5 |
2 files changed, 10 insertions, 0 deletions
diff --git a/db/migrate/20171109101358_drop_table_journey_pattern_sections.rb b/db/migrate/20171109101358_drop_table_journey_pattern_sections.rb new file mode 100644 index 000000000..a7bb482a5 --- /dev/null +++ b/db/migrate/20171109101358_drop_table_journey_pattern_sections.rb @@ -0,0 +1,5 @@ +class DropTableJourneyPatternSections < ActiveRecord::Migration + def change + drop_table :journey_pattern_sections + end +end diff --git a/db/migrate/20171109101514_drop_table_route_sections.rb b/db/migrate/20171109101514_drop_table_route_sections.rb new file mode 100644 index 000000000..c009ed8ec --- /dev/null +++ b/db/migrate/20171109101514_drop_table_route_sections.rb @@ -0,0 +1,5 @@ +class DropTableRouteSections < ActiveRecord::Migration + def change + drop_table :route_sections + end +end |
