hongbo-miao/hongbomiao.com

View on GitHub
data-processing/flink/applications/stream-tweets/migrations/000001_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)
);