Example #1
0
def create_notice(user_id, text, attachment=''):
    new_notice = Notice()
    new_notice.text = text
    new_notice.attachment = attachment
    new_notice.date_of_create = datetime.now()
    new_notice.last_sending = datetime.now()
    new_notice.user_id = user_id
    new_notice.save()