Skip to content

Instantly share code, notes, and snippets.

View hdmdhr's full-sized avatar

Daniel hdmdhr

  • SmartNews
  • Tokyo
  • 04:55 (UTC +09:00)
View GitHub Profile
@bcalloway
bcalloway / us-states-rails-migration.rb
Created February 23, 2009 15:39
MySQL for US States table
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'