Follows DB

Table: follows

nametypenotes

id

String

created_at

DateTime

following_profile_id

String

Foreign key: profiles table profile_id value. profile_id of the Profile being followed (aka. the 'Parent')

profile_id

String

Foreign key: profiles table profile_id value. profile_id of the follower (aka. the 'Child')

contract_address

String?

Profile Follow's NFT Item address

block_timestamp

DateTime?

Profile Follow's NFT Item time of mint

Unique constrains:

  • profile_id+following_profile_id must be unique

Last updated