Skip to content

Instantly share code, notes, and snippets.

View rdelfin's full-sized avatar
🦀

Ricardo Delfin rdelfin

🦀
View GitHub Profile
@rdelfin
rdelfin / # kf5-kconfigwidgets - 2024-10-08_17-09-30.txt
Last active October 8, 2024 16:28
kf5-kconfigwidgets (kde-mac/kde/kf5-kconfigwidgets) on macOS 14 - Homebrew build logs
Homebrew build logs for kde-mac/kde/kf5-kconfigwidgets on macOS 14
Build date: 2024-10-08 17:09:30
### Keybase proof
I hereby claim:
* I am rdelfin on github.
* I am rdelfin (https://keybase.io/rdelfin) on keybase.
* I have a public key ASCSU5RWpHqfLj2LYx2pgKuJR3AaHfkHiQZ1xgVHbvYnPgo
To claim this, I am signing this object:
from sqlalchemy import Table, Column, Integer, String, Float, ForeignKey
from sqlalchemy.ext.declarative import declarative_base
from sqlalchemy.orm import relationship
Base = declarative_base()
carrier_brand_table = Table('carrier_brand', Base.metadata,
Column('carrier_id', Integer, ForeignKey('carrier.id')),
Column('brand_id', Integer, ForeignKey('brand.id'))
)