diff --git a/scripts/generate_pg_data.sh b/scripts/generate_pg_data.sh deleted file mode 100644 index 009ca697a..000000000 --- a/scripts/generate_pg_data.sh +++ /dev/null @@ -1,2 +0,0 @@ -psql -U postgres -c "create table if not exists test (id SERIAL UNIQUE NOT NULL,article TEXT);" -psql -U postgres -c "insert into test (article) select md5(random()::text) from generate_series(1, 1000000) s(i);"