Skip to content

Instantly share code, notes, and snippets.

@ahoward
Created December 12, 2008 16:50
Show Gist options
  • Save ahoward/35188 to your computer and use it in GitHub Desktop.
Save ahoward/35188 to your computer and use it in GitHub Desktop.
class CreateDbFiles < ActiveRecord::Migration
################################################################################
def self.up
create_table(:db_files) do |t|
t.column(:data, :binary)
t.timestamps
end
end
################################################################################
def self.down
drop_table(:db_files)
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment