Last active
July 27, 2017 04:42
-
-
Save baleen37/8e73d706a20063dc5b6f716e05717772 to your computer and use it in GitHub Desktop.
This file contains 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
import pytz | |
from sqlalchemy import types | |
from sqlalchemy.types import TypeDecorator | |
tz = pytz.timezone('Asia/Seoul') | |
class TZDateTime(TypeDecorator): | |
impl = types.DateTime | |
def process_bind_param(self, value, dialect): | |
if value is None: | |
return None | |
return value.astimezone(tz).replace(tzinfo=None) | |
def process_result_value(self, value, dialect): | |
if value is None: | |
return None | |
return value.replace(tzinfo=pytz.utc).astimezone(tz) |
This file contains 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
class User(Base): | |
__tablename__ = 'users' | |
id = Column(Integer, primary_key=True, autoincrement=True) | |
created_at = Column(TZDateTime, index=True, default=func.now()) | |
updated_at = Column(TZDateTime, default=func.now()) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
๐