Skip to content

Instantly share code, notes, and snippets.

@james
Created September 22, 2008 13:54
Show Gist options
  • Save james/11992 to your computer and use it in GitHub Desktop.
Save james/11992 to your computer and use it in GitHub Desktop.
def self.up
create_table :orders do |t|
t.string :description
t.integer :amount
t.string :state, :default => 'pending'
t.timestamps
end
end
def self.down
drop_table :orders
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment