Simple init of db. Don't need migrations.

This commit is contained in:
Matthew Dillon 2015-06-22 13:53:55 -08:00
parent 0826f45b49
commit 871a2f97b3
4 changed files with 5 additions and 2 deletions

View file

@ -16,7 +16,7 @@ class Community(db.Model):
class Dataset(db.Model):
__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)
model = db.Column(db.String(15), nullable=False)
modelname = db.Column(db.String(50), nullable=False)

View file

@ -16,7 +16,7 @@ class DevelopmentConfig(Config):
DEBUG = True
SECRET_KEY = os.environ.get('SECRET_KEY') or 'top secret'
SQLALCHEMY_DATABASE_URI = os.environ.get('DATABASE_URL') or \
'postgres://user:pass@localhost/akindices'
'postgres://postgres@localhost/akindices'
config = {

View file

@ -10,6 +10,8 @@ manager = Manager(app)
@manager.command
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)

View file

@ -6,4 +6,5 @@ MarkupSafe==0.23
SQLAlchemy==1.0.5
Werkzeug==0.10.4
itsdangerous==0.24
psycopg2==2.6.1
wsgiref==0.1.2