Quantcast
Channel: Master Ruby/Rails Programming
Viewing all articles
Browse latest Browse all 25

Common MySQL stuff

$
0
0

To modify an existing column definition:

ALTER TABLE applications modify id INTEGER NOT NULL AUTO_INCREMENT FIRST;

To rename a column:

ALTER TABLE applications CHANGE old_col new_col;


Viewing all articles
Browse latest Browse all 25

Trending Articles