Skip to content

Instantly share code, notes, and snippets.

@akirill0v
Created February 12, 2013 10:54
Show Gist options
  • Save akirill0v/4761544 to your computer and use it in GitHub Desktop.
Save akirill0v/4761544 to your computer and use it in GitHub Desktop.
sqlite in memory
require 'active_record'
ActiveRecord::Base.establish_connection adapter: "sqlite3", database: ":memory:"
ActiveRecord::Migration.create_table :users do |t|
t.string :email
t.string :name
t.timestamps
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment