Sha256: cddd304408dae026e034bbb8858e407b044685fe3999f9e00fa78a9bbb85a825

Contents?: true

Size: 576 Bytes

Versions: 14

Compression:

Stored size: 576 Bytes

Contents

ActiveRecord::Schema.define :version => 0 do

  create_table :follows, :force => true do |t|
    t.integer  "followable_id",   :null => false
    t.string   "followable_type", :null => false
    t.integer  "follower_id",     :null => false
    t.string   "follower_type",   :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

end

Version data entries

14 entries across 14 versions & 2 rubygems

Version Path
acts_as_follower-0.2.1 test/schema.rb
acts_as_follower-0.2.0 test/schema.rb
acts_as_follower-0.1.1 test/schema.rb
acts_as_follower-0.1.0 test/schema.rb
acts_as_followable-0.1.9 test/schema.rb
acts_as_followable-0.1.8 test/schema.rb
acts_as_followable-0.1.7 test/schema.rb
acts_as_followable-0.1.6 test/schema.rb
acts_as_followable-0.1.5 test/schema.rb
acts_as_followable-0.1.4 test/schema.rb
acts_as_followable-0.1.3 test/schema.rb
acts_as_followable-0.1.2 test/schema.rb
acts_as_followable-0.1.1 test/schema.rb
acts_as_followable-0.1.0 test/schema.rb