flectra/addons/website_twitter/models/website_twitter_tweet.py
2018-01-16 02:34:37 -08:00

19 lines
721 B
Python

# -*- coding: utf-8 -*-
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
from flectra import fields, models
class WebsiteTwitterTweet(models.Model):
_name = 'website.twitter.tweet'
website_id = fields.Many2one('website', string='Website')
screen_name = fields.Char(string='Screen Name')
tweet = fields.Text(string='Tweets')
# Twitter IDs are 64-bit unsigned ints, so we need to store them in
# unlimited precision NUMERIC columns, which can be done with a
# float field. Used digits=(0,0) to indicate unlimited.
# Using VARCHAR would work too but would have sorting problems.
tweet_id = fields.Float(string='Tweet ID', digits=(0, 0)) # Twitter