diff --git a/loopdb/sqlc/migrations/000014_reservation_protocol_version.down.sql b/loopdb/sqlc/migrations/000014_reservation_protocol_version.down.sql index d23af75e..ca38f26a 100644 --- a/loopdb/sqlc/migrations/000014_reservation_protocol_version.down.sql +++ b/loopdb/sqlc/migrations/000014_reservation_protocol_version.down.sql @@ -1,3 +1,3 @@ -- protocol_version is used to determine the version of the reservation protocol -- that was used to create the reservation. -ALTER TABLE reservations DROP COLUMN protocol_Version; +ALTER TABLE reservations DROP COLUMN protocol_version; diff --git a/loopdb/sqlc/migrations/000014_reservation_protocol_version.up.sql b/loopdb/sqlc/migrations/000014_reservation_protocol_version.up.sql index 29da580a..464590ab 100644 --- a/loopdb/sqlc/migrations/000014_reservation_protocol_version.up.sql +++ b/loopdb/sqlc/migrations/000014_reservation_protocol_version.up.sql @@ -1,3 +1,3 @@ -- protocol_version is used to determine the version of the reservation protocol -- that was used to create the reservation. -ALTER TABLE reservations ADD COLUMN protocol_Version INTEGER NOT NULL DEFAULT 0; \ No newline at end of file +ALTER TABLE reservations ADD COLUMN protocol_version INTEGER NOT NULL DEFAULT 0; \ No newline at end of file