Created
April 7, 2016 03:12
-
-
Save pawl/b7d3ba6b8721d878be506be335a526c0 to your computer and use it in GitHub Desktop.
ambiguous column error flask-admin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from flask import Flask | |
from flask_sqlalchemy import SQLAlchemy | |
import flask_admin as admin | |
from flask_admin.contrib import sqla | |
# Create application | |
app = Flask(__name__) | |
# Create dummy secrey key so we can use sessions | |
app.config['SECRET_KEY'] = '123456790' | |
# Create in-memory database | |
app.config['SQLALCHEMY_DATABASE_URI'] = 'sqlite:///sample_db_2.sqlite' | |
app.config['SQLALCHEMY_ECHO'] = True | |
db = SQLAlchemy(app) | |
# Flask views | |
@app.route('/') | |
def index(): | |
return '<a href="/admin/">Click me to get to Admin!</a>' | |
class Car(db.Model): | |
__tablename__ = 'cars' | |
id = db.Column(db.Integer, primary_key=True, autoincrement=True) | |
desc = db.Column(db.String(50)) | |
def __unicode__(self): | |
return self.desc | |
class Tyre(db.Model): | |
__tablename__ = 'tyres' | |
car_id = db.Column(db.Integer, db.ForeignKey('cars.id'), primary_key=True) | |
tyre_id = db.Column(db.Integer, primary_key=True) | |
car = db.relationship('Car', backref='tyres') | |
desc = db.Column(db.String(50)) | |
class CarAdmin(sqla.ModelView): | |
column_display_pk = True | |
column_default_sort = "desc" | |
form_columns = ['id', 'desc'] | |
class TyreAdmin(sqla.ModelView): | |
column_display_pk = True | |
form_columns = ['car', 'tyre_id', 'desc'] | |
# Create admin | |
admin = admin.Admin(app, name='Example: SQLAlchemy2', template_mode='bootstrap3') | |
admin.add_view(CarAdmin(Car, db.session)) | |
admin.add_view(TyreAdmin(Tyre, db.session)) | |
if __name__ == '__main__': | |
# Create DB | |
db.drop_all() | |
db.create_all() | |
# Start app | |
app.run(debug=True) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment