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 c5f7a14 commit 271ce0d
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 @@ -8287,6 +8287,7 @@ tables:
- name: obsStart
'@id': '#Visit.obsStart'
datatype: timestamp
length: 6
mysql:datatype: DATETIME(6)
description: ''
- name: expTime
Expand Down Expand Up @@ -8321,23 +8322,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 @@ -8354,6 +8355,7 @@ tables:
- name: expMidpt
'@id': '#CcdVisit.expMidpt'
datatype: timestamp
length: 6
mysql:datatype: DATETIME(6)
description: ''
- name: expTime
Expand All @@ -8363,6 +8365,7 @@ tables:
- name: obsStart
'@id': '#CcdVisit.obsStart'
datatype: timestamp
length: 6
mysql:datatype: DATETIME(6)
description: ''
- name: darkTime
Expand Down

0 comments on commit 271ce0d

Please sign in to comment.