Skip to content

Instantly share code, notes, and snippets.

View XiaonuoGantan's full-sized avatar

Xiaonuo Gantan XiaonuoGantan

View GitHub Profile
@XiaonuoGantan
XiaonuoGantan / models.py
Created June 4, 2014 18:05
Many-to-Many relationship with composite keys in tables
import os
from sqlalchemy import Column, DateTime, String, Integer, ForeignKey, func, ForeignKeyConstraint
from sqlalchemy.orm import relationship, backref
from sqlalchemy.ext.declarative import declarative_base
Base = declarative_base()