From cff414b1a383c7b109298d119031caae87a1c109 Mon Sep 17 00:00:00 2001 From: Keith Moss Date: Thu, 7 Sep 2017 19:00:05 +0800 Subject: [PATCH] Name was missing from columns --- ealgis_data_schema/schema_v1.py | 1 + 1 file changed, 1 insertion(+) diff --git a/ealgis_data_schema/schema_v1.py b/ealgis_data_schema/schema_v1.py index b8bb7db..ab6fa64 100644 --- a/ealgis_data_schema/schema_v1.py +++ b/ealgis_data_schema/schema_v1.py @@ -53,6 +53,7 @@ def make_uuid(): "column_info", metadata, Column('id', Integer, primary_key=True), Column('table_info_id', Integer, fkey('table_info.id'), nullable=False), + Column('name', String(256)), Column('schema_name', String(256)), Column('metadata', JSON()), schema=schema_name))