Merge branch 'master' of github.com:ZeusWPI/Foodbot
This commit is contained in:
commit
70a5874089
2 changed files with 1 additions and 2 deletions
|
@ -7,7 +7,6 @@ from app import app, db
|
||||||
from models import User, Location, Food, Order, OrderItem
|
from models import User, Location, Food, Order, OrderItem
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
class ModelBaseView(ModelView):
|
class ModelBaseView(ModelView):
|
||||||
|
|
||||||
def is_accessible(self):
|
def is_accessible(self):
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
from app import db
|
from app import db
|
||||||
|
|
||||||
|
|
||||||
# Create database models
|
# Create database models
|
||||||
class User(db.Model):
|
class User(db.Model):
|
||||||
id = db.Column(db.Integer, primary_key=True)
|
id = db.Column(db.Integer, primary_key=True)
|
||||||
|
@ -77,7 +78,6 @@ class Order(db.Model):
|
||||||
stoptime = db.Column(db.DateTime)
|
stoptime = db.Column(db.DateTime)
|
||||||
orders = db.relationship('OrderItem', backref='order', lazy='dynamic')
|
orders = db.relationship('OrderItem', backref='order', lazy='dynamic')
|
||||||
|
|
||||||
|
|
||||||
def configure(self, courrier, location, starttime, stoptime):
|
def configure(self, courrier, location, starttime, stoptime):
|
||||||
self.courrier = courrier
|
self.courrier = courrier
|
||||||
self.location = location
|
self.location = location
|
||||||
|
|
Loading…
Reference in a new issue