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
Homebrew build logs for kde-mac/kde/kf5-kconfigwidgets on macOS 14 | |
Build date: 2024-10-08 17:09:30 |
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
### 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: |
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 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')) | |
) |