Sha256: 38a8a9774407201c344ad20f611f90e635527999bf1b9a4ea69770743b41e9d0

Contents?: true

Size: 754 Bytes

Versions: 8

Compression:

Stored size: 754 Bytes

Contents

ActiveRecord::Schema.define version: 0 do

    create_table :favorites, force: true do |t|
        t.integer  'favoritable_id', null: false
        t.string   'favoritable_type', null: false
        t.integer  'favoritor_id', null: false
        t.string   'favoritor_type', null: false
        t.string :scope, default: ActsAsFavoritor.default_scope, null: false
        t.boolean  'blocked', default: false, null: false
        t.datetime 'created_at'
        t.datetime 'updated_at'
    end

    create_table :users, force: true do |t|
        t.column :name, :string
    end

    create_table :bands, force: true do |t|
        t.column :name, :string
    end

    create_table :somes, force: true do |t|
        t.column :name, :string
    end

end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
acts_as_favoritor-1.5.0 test/schema.rb
acts_as_favoritor-1.4.0 test/schema.rb
acts_as_favoritor-1.3.2 test/schema.rb
acts_as_favoritor-1.2.2 test/schema.rb
acts_as_favoritor-1.2.1 test/schema.rb
acts_as_favoritor-1.2.0 test/schema.rb
acts_as_favoritor-1.1.3 test/schema.rb
acts_as_favoritor-1.1.2 test/schema.rb