Simple init of db. Don't need migrations.
This commit is contained in:
parent
0826f45b49
commit
871a2f97b3
4 changed files with 5 additions and 2 deletions
|
@ -16,7 +16,7 @@ class Community(db.Model):
|
||||||
class Dataset(db.Model):
|
class Dataset(db.Model):
|
||||||
__tablename__ = 'datasets'
|
__tablename__ = 'datasets'
|
||||||
|
|
||||||
id = db.Column(db.Integer, primary_key=True
|
id = db.Column(db.Integer, primary_key=True)
|
||||||
datatype = db.Column(db.String(15), nullable=False)
|
datatype = db.Column(db.String(15), nullable=False)
|
||||||
model = db.Column(db.String(15), nullable=False)
|
model = db.Column(db.String(15), nullable=False)
|
||||||
modelname = db.Column(db.String(50), nullable=False)
|
modelname = db.Column(db.String(50), nullable=False)
|
||||||
|
|
|
@ -16,7 +16,7 @@ class DevelopmentConfig(Config):
|
||||||
DEBUG = True
|
DEBUG = True
|
||||||
SECRET_KEY = os.environ.get('SECRET_KEY') or 'top secret'
|
SECRET_KEY = os.environ.get('SECRET_KEY') or 'top secret'
|
||||||
SQLALCHEMY_DATABASE_URI = os.environ.get('DATABASE_URL') or \
|
SQLALCHEMY_DATABASE_URI = os.environ.get('DATABASE_URL') or \
|
||||||
'postgres://user:pass@localhost/akindices'
|
'postgres://postgres@localhost/akindices'
|
||||||
|
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
|
|
@ -10,6 +10,8 @@ manager = Manager(app)
|
||||||
|
|
||||||
@manager.command
|
@manager.command
|
||||||
def initdb():
|
def initdb():
|
||||||
|
# Need to import models in order for Flask-SQLAlchemy to create them
|
||||||
|
from app.models import Community, Dataset, Temperature
|
||||||
db.create_all(app=app)
|
db.create_all(app=app)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
@ -6,4 +6,5 @@ MarkupSafe==0.23
|
||||||
SQLAlchemy==1.0.5
|
SQLAlchemy==1.0.5
|
||||||
Werkzeug==0.10.4
|
Werkzeug==0.10.4
|
||||||
itsdangerous==0.24
|
itsdangerous==0.24
|
||||||
|
psycopg2==2.6.1
|
||||||
wsgiref==0.1.2
|
wsgiref==0.1.2
|
||||||
|
|
Loading…
Add table
Reference in a new issue