Skip to content

Commit

Permalink
Fix floats that were mistakenly marked as (integer) longs.
Browse files Browse the repository at this point in the history
  • Loading branch information
ctslater committed Apr 8, 2022
1 parent 49a706f commit cd48e37
Showing 1 changed file with 8 additions and 5 deletions.
13 changes: 8 additions & 5 deletions yml/dp02_dc2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8285,6 +8285,7 @@ tables:
- name: obsStart
'@id': '#Visit.obsStart'
datatype: timestamp
length: 6
mysql:datatype: DATETIME(6)
description: ''
- name: expTime
Expand Down Expand Up @@ -8319,23 +8320,23 @@ tables:
description: ''
- name: zenithDistance
'@id': '#CcdVisit.zenithDistance'
datatype: long
datatype: float
description: ''
- name: zeroPoint
'@id': '#CcdVisit.zeroPoint'
datatype: long
datatype: float
description: ''
- name: psfSigma
'@id': '#CcdVisit.psfSigma'
datatype: long
datatype: float
description: ''
- name: skyBg
'@id': '#CcdVisit.skyBg'
datatype: long
datatype: float
description: ''
- name: skyNoise
'@id': '#CcdVisit.skyNoise'
datatype: long
datatype: float
description: ''
- name: detector
'@id': '#CcdVisit.detector'
Expand All @@ -8352,6 +8353,7 @@ tables:
- name: expMidpt
'@id': '#CcdVisit.expMidpt'
datatype: timestamp
length: 6
mysql:datatype: DATETIME(6)
description: ''
- name: expTime
Expand All @@ -8361,6 +8363,7 @@ tables:
- name: obsStart
'@id': '#CcdVisit.obsStart'
datatype: timestamp
length: 6
mysql:datatype: DATETIME(6)
description: ''
- name: darkTime
Expand Down

0 comments on commit cd48e37

Please sign in to comment.