-- Rename column in the users table (renaming 'bio' to 'biography') ALTER TABLE users RENAME COLUMN bio TO biography; -- Drop a column from the comments table (dropping 'commented_at' column) ALTER ...