Skip to content

Instantly share code, notes, and snippets.

View CUgNhgkf's full-sized avatar

CUgNhgkf

View GitHub Profile
@dannguyen
dannguyen / schemacrawler-sqlite-macos-howto.md
Last active March 5, 2025 23:27
How to use schemacrawler to generate schema diagrams for SQLite from the commandline (Mac OS)
@jsteiner
jsteiner / database_cleaner.rb
Created January 10, 2014 20:31
Database Cleaner
RSpec.configure do |config|
config.before(:suite) do
DatabaseCleaner.clean_with(:truncation)
end
config.before(:each) do
DatabaseCleaner.strategy = :transaction
end
config.before(:each, js: true) do