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