Skip to content

Commit

Permalink
Reverting name
Browse files Browse the repository at this point in the history
  • Loading branch information
akadlec committed Apr 17, 2021
1 parent 18d6e0c commit 9d31ae0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/Entities/Connectors/Connector.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,8 @@
* @ORM\InheritanceType("SINGLE_TABLE")
* @ORM\DiscriminatorColumn(name="connector_type", type="string", length=40)
* @ORM\DiscriminatorMap({
* "fb-bus" = "FastyBird\DevicesModule\Entities\Connectors\FbBusConnector",
* "fb-mqtt-v1" = "FastyBird\DevicesModule\Entities\Connectors\FbMqttV1Connector"
* "fb_bus" = "FastyBird\DevicesModule\Entities\Connectors\FbBusConnector",
* "fb_mqtt_v1" = "FastyBird\DevicesModule\Entities\Connectors\FbMqttV1Connector"
* })
* @ORM\MappedSuperclass
*/
Expand Down
2 changes: 1 addition & 1 deletion tests/sql/dummy.data.sql
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
INSERT IGNORE INTO `fb_connectors` (`connector_id`, `connector_name`, `connector_key`, `connector_enabled`, `connector_type`, `created_at`, `updated_at`) VALUES
(_binary 0x17C59DFA2EDD438E8C49FAA4E38E5A5E, 'FB MQTT v1', 'bLikvZ', true, 'fb-mqtt-v1', '2020-03-20 09:18:20', '2020-03-20 09:18:20');
(_binary 0x17C59DFA2EDD438E8C49FAA4E38E5A5E, 'FB MQTT v1', 'bLikvZ', true, 'fb_mqtt_v1', '2020-03-20 09:18:20', '2020-03-20 09:18:20');

INSERT IGNORE INTO `fb_devices` (`device_id`, `parent_id`, `device_identifier`, `device_key`, `device_name`, `device_comment`, `device_state`, `device_enabled`, `device_hardware_manufacturer`, `device_hardware_model`, `device_hardware_version`, `device_mac_address`, `device_firmware_manufacturer`, `device_firmware_version`, `params`, `created_at`, `updated_at`, `owner`) VALUES
(_binary 0x69786D15FD0C4D9F937833287C2009FA, NULL, 'first-device', 'bLikkz', 'First device', NULL, 'init', 1, 'itead', 'sonoff_basic', 'rev1', '807d3a3dbe6d', 'fastybird', NULL, '[]', '2020-03-19 14:03:48', '2020-03-22 20:12:07', '455354e8-96bd-4c29-84e7-9f10e1d4db4b'),
Expand Down

0 comments on commit 9d31ae0

Please sign in to comment.