Skip to content

Instantly share code, notes, and snippets.

@hectorsq
Created January 25, 2009 23:15
Show Gist options
  • Save hectorsq/52605 to your computer and use it in GitHub Desktop.
Save hectorsq/52605 to your computer and use it in GitHub Desktop.
class CreateDocuments < ActiveRecord::Migration
def self.up
create_table :documents do |t|
t.string :name
t.string :doc_file_name
t.string :doc_content_type
t.integer :doc_file_size
t.datetime :doc_updated_at
t.timestamps
end
end
def self.down
drop_table :documents
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment