Created
February 23, 2009 15:39
-
-
Save bcalloway/69005 to your computer and use it in GitHub Desktop.
MySQL for US States table
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
class CreateStates < ActiveRecord::Migration | |
def self.up | |
create_table :states do |t| | |
t.string :name | |
t.string :abbreviation | |
end | |
State.create :name => 'Alabama', :abbreviation => 'AL' | |
State.create :name => 'Alaska', :abbreviation => 'AK' | |
State.create :name => 'Arizona', :abbreviation => 'AZ' | |
State.create :name => 'Arkansas', :abbreviation => 'AR' | |
State.create :name => 'California', :abbreviation => 'CA' | |
State.create :name => 'Colorado', :abbreviation => 'CO' | |
State.create :name => 'Connecticut', :abbreviation => 'CT' | |
State.create :name => 'Delaware', :abbreviation => 'DE' | |
State.create :name => 'District of Columbia', :abbreviation => 'DC' | |
State.create :name => 'Florida', :abbreviation => 'FL' | |
State.create :name => 'Georgia', :abbreviation => 'GA' | |
State.create :name => 'Hawaii', :abbreviation => 'HI' | |
State.create :name => 'Idaho', :abbreviation => 'ID' | |
State.create :name => 'Illinois', :abbreviation => 'IL' | |
State.create :name => 'Indiana', :abbreviation => 'IN' | |
State.create :name => 'Iowa', :abbreviation => 'IA' | |
State.create :name => 'Kansas', :abbreviation => 'KS' | |
State.create :name => 'Kentucky', :abbreviation => 'KY' | |
State.create :name => 'Louisiana', :abbreviation => 'LA' | |
State.create :name => 'Maine', :abbreviation => 'ME' | |
State.create :name => 'Maryland', :abbreviation => 'MD' | |
State.create :name => 'Massachutsetts', :abbreviation => 'MA' | |
State.create :name => 'Michigan', :abbreviation => 'MI' | |
State.create :name => 'Minnesota', :abbreviation => 'MN' | |
State.create :name => 'Mississippi', :abbreviation => 'MS' | |
State.create :name => 'Missouri', :abbreviation => 'MO' | |
State.create :name => 'Montana', :abbreviation => 'MT' | |
State.create :name => 'Nebraska', :abbreviation => 'NE' | |
State.create :name => 'Nevada', :abbreviation => 'NV' | |
State.create :name => 'New Hampshire', :abbreviation => 'NH' | |
State.create :name => 'New Jersey', :abbreviation => 'NJ' | |
State.create :name => 'New Mexico', :abbreviation => 'NM' | |
State.create :name => 'New York', :abbreviation => 'NY' | |
State.create :name => 'North Carolina', :abbreviation => 'NC' | |
State.create :name => 'North Dakota', :abbreviation => 'ND' | |
State.create :name => 'Ohio', :abbreviation => 'OH' | |
State.create :name => 'Oklahoma', :abbreviation => 'OK' | |
State.create :name => 'Oregon', :abbreviation => 'OR' | |
State.create :name => 'Pennsylvania', :abbreviation => 'PA' | |
State.create :name => 'Rhode Island', :abbreviation => 'RI' | |
State.create :name => 'South Carolina', :abbreviation => 'SC' | |
State.create :name => 'South Dakota', :abbreviation => 'SD' | |
State.create :name => 'Tennessee', :abbreviation => 'TN' | |
State.create :name => 'Texas', :abbreviation => 'TX' | |
State.create :name => 'Utah', :abbreviation => 'UT' | |
State.create :name => 'Vermont', :abbreviation => 'VT' | |
State.create :name => 'Virginia', :abbreviation => 'VA' | |
State.create :name => 'Washington', :abbreviation => 'WA' | |
State.create :name => 'West Virginia', :abbreviation => 'WV' | |
State.create :name => 'Wisconsin', :abbreviation => 'WI' | |
State.create :name => 'Wyoming', :abbreviation => 'WY' | |
end | |
def self.down | |
drop_table :states | |
end | |
end |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE IF NOT EXISTS `states` ( | |
`id` int(11) NOT NULL AUTO_INCREMENT, | |
`abbr` varchar(2) NOT NULL, | |
`name` varchar(250) NOT NULL, | |
PRIMARY KEY (`id`) | |
) ENGINE=MyISAM DEFAULT CHARSET=utf8 AUTO_INCREMENT=52 ; | |
INSERT INTO `states` (`id`, `abbr`, `name`) VALUES | |
(1, 'AL', 'Alabama'), | |
(2, 'AK', 'Alaska'), | |
(3, 'AZ', 'Arizona'), | |
(4, 'AR', 'Arkansas'), | |
(5, 'CA', 'California'), | |
(6, 'CO', 'Colorado'), | |
(7, 'CT', 'Connecticut'), | |
(8, 'DE', 'Delaware'), | |
(9, 'DC', 'District of Columbia'), | |
(10, 'FL', 'Florida'), | |
(11, 'GA', 'Georgia'), | |
(12, 'HI', 'Hawaii'), | |
(13, 'ID', 'Idaho'), | |
(14, 'IL', 'Illinois'), | |
(15, 'IN', 'Indiana'), | |
(16, 'IA', 'Iowa'), | |
(17, 'KS', 'Kansas'), | |
(18, 'KY', 'Kentucky'), | |
(19, 'LA', 'Louisiana'), | |
(20, 'ME', 'Maine'), | |
(21, 'MD', 'Maryland'), | |
(22, 'MA', 'Massachusetts'), | |
(23, 'MI', 'Michigan'), | |
(24, 'MN', 'Minnesota'), | |
(25, 'MS', 'Mississippi'), | |
(26, 'MO', 'Missouri'), | |
(27, 'MT', 'Montana'), | |
(28, 'NE', 'Nebraska'), | |
(29, 'NV', 'Nevada'), | |
(30, 'NH', 'New Hampshire'), | |
(31, 'NJ', 'New Jersey'), | |
(32, 'NM', 'New Mexico'), | |
(33, 'NY', 'New York'), | |
(34, 'NC', 'North Carolina'), | |
(35, 'ND', 'North Dakota'), | |
(36, 'OH', 'Ohio'), | |
(37, 'OK', 'Oklahoma'), | |
(38, 'OR', 'Oregon'), | |
(39, 'PA', 'Pennsylvania'), | |
(40, 'RI', 'Rhode Island'), | |
(41, 'SC', 'South Carolina'), | |
(42, 'SD', 'South Dakota'), | |
(43, 'TN', 'Tennessee'), | |
(44, 'TX', 'Texas'), | |
(45, 'UT', 'Utah'), | |
(46, 'VT', 'Vermont'), | |
(47, 'VA', 'Virginia'), | |
(48, 'WA', 'Washington'), | |
(49, 'WV', 'West Virginia'), | |
(50, 'WI', 'Wisconsin'), | |
(51, 'WY', 'Wyoming'); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment