MySQL recipe #1
Apr. 13th, 2009 01:24 pmI’m putting this here because I’m tired of losing it. I hate having to look up every time the exact same recipe for “how do I create a new empty database for Django or Rails in MySQL?’ It’s in two different sections of the O’Reilly MySQL in a Nutshell book, and while I have both bookdarted and know where to find them, it’s nice to have them in just one place! The phrase ‘to X’ on line 4 is the database username, and the ‘identified by’ string there is your database password, in case you were wondering.
# mysql -u admin -p password: mysql> create database secretproject; mysql> grant all on secretproject.* to secretproject identified by 'redacted'; mysql> flush privileges; mysql> quit; #This entry was automatically cross-posted from Elf's technical journal, ElfSternberg.com