Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix gtfs translations #208

Merged
merged 2 commits into from Jun 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
@@ -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