Sha256: 4bb5532cf347da6d03ca0e43bf78c11d10138ac39f429c4a30ec675500808769

Contents?: true

Size: 995 Bytes

Versions: 7

Compression:

Stored size: 995 Bytes

Contents

require 'active_record'

ActiveRecord::Base.establish_connection adapter: "sqlite3", database: ":memory:"

ActiveRecord::Migrator.up "db/migrate"

ActiveRecord::Migration.create_table :auctions do |t|
  t.string :name
  t.datetime :start_at
  t.datetime :close_at
  t.boolean :we_want_it
  t.integer :pet_id

  t.timestamps null: false
end

ActiveRecord::Migration.create_table :publishers do |t|
  t.string :name
  t.datetime :start_at
  t.datetime :close_at
  t.boolean :we_want_it
  t.integer :pet_id

  t.timestamps null: false
end

ActiveRecord::Migration.create_table :subscribers do |t|
  t.string :event_name
  t.string :type

  t.timestamps null: false
end

ActiveRecord::Migration.create_table :pets do |t|
  t.integer :awesomeness
  t.string :type


  t.timestamps null: false
end

ActiveRecord::Migration.create_table :arbitrary_models do |t|
  t.integer :awesomeness

  t.timestamps null: false
end

class Pet < ActiveRecord::Base
end

class ArbitraryModel < ActiveRecord::Base
end

Version data entries

7 entries across 7 versions & 1 rubygems

Version Path
reactor-0.18.0 spec/support/active_record.rb
reactor-0.17.0 spec/support/active_record.rb
reactor-0.16.1 spec/support/active_record.rb
reactor-0.16.0 spec/support/active_record.rb
reactor-0.15.1 spec/support/active_record.rb
reactor-0.15.0 spec/support/active_record.rb
reactor-0.14.0 spec/support/active_record.rb