Sha256: 15e3fd2a872e6abfa4d90bbbec276a8a08246f50938f5a1805490139f17ad1cd
Contents?: true
Size: 476 Bytes
Versions: 1
Compression:
Stored size: 476 Bytes
Contents
config = YAML::load(IO.read(File.join(File.dirname(__FILE__), 'database.yml'))) ActiveRecord::Base.logger = Logger.new(File.join(File.dirname(__FILE__), "debug.log")) ActiveRecord::Base.establish_connection(config[ENV['DB'] || 'sqlite']) ActiveRecord::Schema.define(:version => 1) do create_table :blogs, :force => true do |t| t.column :title, :string t.column :body, :string end create_table :users, :force => true do |t| t.column :name, :string end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
backgrounded-2.1.0 | test/setup_database.rb |