Skip to content

Instantly share code, notes, and snippets.

@Mike-Schvedov
Created December 3, 2024 07:08
Show Gist options
  • Save Mike-Schvedov/0f7553c064998c63962b3e52c5f1a450 to your computer and use it in GitHub Desktop.
Save Mike-Schvedov/0f7553c064998c63962b3e52c5f1a450 to your computer and use it in GitHub Desktop.
Drop Old Table, Create New One
docker exec -i mysql-container mysql -u mike -pmike1234 mydatabase -e "
DROP TABLE IF EXISTS users;
CREATE TABLE users (id VARCHAR(255) PRIMARY KEY, score INT);"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment