Skip to content

Instantly share code, notes, and snippets.

@baleen37
Last active July 27, 2017 04:42
Show Gist options
  • Save baleen37/8e73d706a20063dc5b6f716e05717772 to your computer and use it in GitHub Desktop.
Save baleen37/8e73d706a20063dc5b6f716e05717772 to your computer and use it in GitHub Desktop.
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)
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())
@DingGGu
Copy link

DingGGu commented Jul 27, 2017

๐Ÿ‘

@demarlik01
Copy link

๐Ÿ˜ž

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment