Skip to content

Commit

Permalink
Modifying database types to store bigger URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
3Dgoo committed Jun 3, 2020
1 parent 38c9432 commit 981b54f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/Model/InstagramPost.php
Expand Up @@ -11,12 +11,12 @@ class InstagramPost extends DataObject
'ShortCode' => 'Varchar(100)',
'Handle' => 'Varchar(100)',
'Caption' => 'Text',
'Link' => 'Varchar(255)',
'Link' => 'Text',
'Type' => 'Varchar(100)',
'ImageLowResolutionUrl' => 'Varchar(255)',
'ImageStandardResolutionUrl' => 'Varchar(255)',
'ImageHighResolutionUrl' => 'Varchar(255)',
'ImageThumbnailURL' => 'Varchar(255)',
'ImageLowResolutionUrl' => 'Text',
'ImageStandardResolutionUrl' => 'Text',
'ImageHighResolutionUrl' => 'Text',
'ImageThumbnailURL' => 'Text',
'Posted' => 'Datetime',
'LikesCount' => 'Int',
'CommentsCount' => 'Int',
Expand Down

0 comments on commit 981b54f

Please sign in to comment.