generated from CubeCraft-Creations/Tracehound
6 lines
285 B
SQL
6 lines
285 B
SQL
|
|
-- Migration 002: Add battery_calibration_offset to cameras table
|
||
|
|
-- This column stores a per-camera calibration value for converting raw battery
|
||
|
|
-- readings (e.g. GoPro Hero 3 byte at offset 57) into percentage values.
|
||
|
|
|
||
|
|
ALTER TABLE cameras ADD COLUMN battery_calibration_offset REAL;
|