follows

Follow 관계 데이터

Column name Type Index Description
id bigint(20) unsigned auto_increment Primary Key
user_id bigint(20) unsigned Index Follow를 한 주체의 User id
Follow belongsTo(User) relation key
followable_id bigint(20) unsigned Index Follow 대상의 model id
Follow morphTo() relation key
followable_type varchar(255) utf8mb4_unicode_ci Index Follow 대상의 model type
Follow morphTo() relation key
created_at timestamp nullable
updated_at timestamp nullable