aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2017-07-13 18:36:04 +0200
committerRobert2017-07-19 08:50:54 +0200
commit6126f605b2846ef47751f070be3a192703d8aef8 (patch)
treeafffd9d92e9060b85676e4f6c9b0b58be13a0e18
parent1039a32677434bac1816e48939db5f1040a6862d (diff)
downloadchouette-core-6126f605b2846ef47751f070be3a192703d8aef8.tar.bz2
Add `WorkbenchImport` model
A new model that represents a batched import. The zip archive attached to this record will contain one or more datasets. A `Referential` will be created for each dataset in the zip, and that sub-dataset will be scheduled for a Netex import (only handling Netex imports at the moment). The model is currently empty but I'm committing it now so it can be used by others on the team. Refs #3507
-rw-r--r--app/models/workbench_import.rb2
1 files changed, 2 insertions, 0 deletions
diff --git a/app/models/workbench_import.rb b/app/models/workbench_import.rb
new file mode 100644
index 000000000..9323bd4b5
--- /dev/null
+++ b/app/models/workbench_import.rb
@@ -0,0 +1,2 @@
+class WorkbenchImport < Import
+end