polardbxengine/storage/ndb/nodejs/samples/tweet/drop_tweet_tables.sql

11 lines
218 B
SQL

-- tables must be dropped in reverse order of dependencies
use test;
DROP TABLE if exists follow;
DROP TABLE if exists hashtag;
DROP TABLE if exists mention;
DROP TABLE if exists tweet;
DROP TABLE if exists author;