hongbo-miao/hongbomiao.com

View on GitHub
hasura-graphql-engine/migrations/twitter_db/1650608310921_create_twitter_user_table/up.sql

Summary

Maintainability
Test Coverage
create table if not exists twitter_user
(
    id text not null,
    name text not null,
    avatar text not null,
    primary key (id)
);