Sha256: 936835f5c0f21e36e4d9a4217489367dcb4ca895ab123eb7b4f3e34ce3f0172e
Contents?: true
Size: 626 Bytes
Versions: 1
Compression:
Stored size: 626 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 create_table :somes, :force => true do |t| t.column :name, :string end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
acts_as_follower1-1.0.9 | test/schema.rb |