From c3344b00e70461b646897973a612549e7d0e0d8b Mon Sep 17 00:00:00 2001 From: Matthew Dillon Date: Fri, 9 Oct 2015 10:48:28 -0700 Subject: [PATCH] Only build new table --- manage.py | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/manage.py b/manage.py index a28550b..2e6157b 100644 --- a/manage.py +++ b/manage.py @@ -10,9 +10,19 @@ manager = Manager(app) @manager.command def initdb(): - # Need to import models in order for Flask-SQLAlchemy to create them - from app.main.models import Community, Dataset, Temperature - db.create_all(app=app) + from sqlalchemy.sql import text + cmd = """ + CREATE TABLE new_communities ( + id serial NOT NULL, + name character varying(50) NOT NULL, + northing double precision NOT NULL, + easting double precision NOT NULL, + latitude double precision NOT NULL, + longitude double precision NOT NULL, + data jsonb NOT NULL, + CONSTRAINT new_communities_pkey PRIMARY KEY (id) + );""" + _ = db.engine.execute(text(cmd)) if __name__ == '__main__':