2018-01-16 06:58:15 +01:00
|
|
|
# -*- coding: utf-8 -*-
|
2018-01-16 11:34:37 +01:00
|
|
|
# Part of Odoo, Flectra. See LICENSE file for full copyright and licensing details.
|
2018-01-16 06:58:15 +01:00
|
|
|
|
2018-01-16 11:34:37 +01:00
|
|
|
from flectra import fields, models
|
2018-01-16 06:58:15 +01:00
|
|
|
|
|
|
|
|
|
|
|
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
|