Skip to content

Commit

Permalink
Fix gtfs translations (#208)
Browse files Browse the repository at this point in the history
* Fix gtfs_translations

* Also fix in sqlite
  • Loading branch information
irees committed Jun 1, 2022
1 parent 7c2429f commit 0ccd76a
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
@@ -0,0 +1,5 @@
BEGIN;

ALTER TABLE gtfs_translations ADD COLUMN field_value TEXT;

COMMIT;
1 change: 1 addition & 0 deletions internal/schema/sqlite.sql
Expand Up @@ -493,6 +493,7 @@ CREATE TABLE IF NOT EXISTS "gtfs_translations" (
"updated_at" datetime DEFAULT CURRENT_TIMESTAMP NOT NULL,
"table_name" varchar(255),
"field_name" varchar(255),
"field_value" varchar(255),
"language" varchar(255),
"translation" varchar(255),
"record_id" varchar(255),
Expand Down

0 comments on commit 0ccd76a

Please sign in to comment.