Sha256: 83d780437d7fad8603619a41884b98e8321057e741ef80632216cbf90963fed2

Contents?: true

Size: 281 Bytes

Versions: 8

Compression:

Stored size: 281 Bytes

Contents

require 'active_record'

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

ActiveRecord::Migrator.up "db/migrate"

ActiveRecord::Migration.create_table :models do |t|
  t.string :type
  t.integer :actor_id
  t.integer :target_id

  t.timestamps
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
descendants_describable-1.0.0 spec/support/activerecord.rb
descendants_describable-0.0.7 spec/support/activerecord.rb
descendants_describable-0.0.6 spec/support/activerecord.rb
descendants_describable-0.0.5 spec/support/activerecord.rb
descendants_describable-0.0.4 spec/support/activerecord.rb
descendants_describable-0.0.3 spec/support/activerecord.rb
descendants_describable-0.0.2 spec/support/activerecord.rb
descendants_describable-0.0.1 spec/support/activerecord.rb