Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Fixed field type
  • Loading branch information
willdoran committed Aug 23, 2018
1 parent 0e1a00f commit 2531515
Show file tree
Hide file tree
Showing 4 changed files with 13 additions and 3 deletions.
4 changes: 2 additions & 2 deletions behat.yml.dist
Expand Up @@ -12,15 +12,15 @@ default:
- Tests\Integration\Bootstrap\KohanaContext
- Tests\Integration\Bootstrap\FeatureContext
- Tests\Integration\Bootstrap\RestContext:
baseUrl: http://localhost:8000
baseUrl: http://192.168.33.110
# proxyUrl: localhost:8888
- Tests\Integration\Bootstrap\PHPUnitFixtureContext
- Tests\Integration\Bootstrap\MinkExtendedContext
filters:
tags: ~@dataproviders
extensions:
Behat\MinkExtension:
base_url: http://localhost:8000
base_url: http://192.168.33.110
sessions:
default:
goutte: ~
Expand Down
9 changes: 9 additions & 0 deletions mapping.json
@@ -0,0 +1,9 @@
{
"description": "Unstructured Description",
"title": "Survey",
"Created (UTC)": "Created (UTC)",
"Updated (UTC)": "Updated (UTC)",
"Post Date (UTC)": "Post Date (UTC)",
"Contact": "Contact",
"form_id": "form_id"
}
2 changes: 1 addition & 1 deletion migrations/20180821220522_add_status_to_csv.php
Expand Up @@ -13,7 +13,7 @@ public function up()
->addColumn('status', 'string', ['null' => true])
->addColumn('errors', 'string', ['null' => true])
->addColumn('processed', 'string', ['null' => true])
->addColumn('colletion_id', 'int', ['null' => true])
->addColumn('colletion_id', 'integer', ['null' => true])
->update();
}

Expand Down
1 change: 1 addition & 0 deletions values.json
@@ -0,0 +1 @@
{"form": 9}

0 comments on commit 2531515

Please sign in to comment.