Deleted articles cannot be recovered. Draft of this article would be also deleted. Are you sure you want to delete this article? $VERBOSE = true require "active_record" ActiveRecord::VERSION::STRING # => "6.0.0" ActiveRecord::Base.establish_connection(adapter: "sqlite3", database: ":memory:") ActiveRecord::Migration.verbose = false ActiveRecord::Schema.define do create_table :users do |t| end end