Only build new table
This commit is contained in:
parent
befc9319fc
commit
c3344b00e7
1 changed files with 13 additions and 3 deletions
16
manage.py
16
manage.py
|
@ -10,9 +10,19 @@ manager = Manager(app)
|
||||||
|
|
||||||
@manager.command
|
@manager.command
|
||||||
def initdb():
|
def initdb():
|
||||||
# Need to import models in order for Flask-SQLAlchemy to create them
|
from sqlalchemy.sql import text
|
||||||
from app.main.models import Community, Dataset, Temperature
|
cmd = """
|
||||||
db.create_all(app=app)
|
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__':
|
if __name__ == '__main__':
|
||||||
|
|
Loading…
Add table
Reference in a new issue