Sha256: bb984bdf9d4deb8f33235088a00ee52cb55c39567268ae690e45f8ba5ac0a52a
Contents?: true
Size: 658 Bytes
Versions: 6
Compression:
Stored size: 658 Bytes
Contents
ActiveRecord::Schema.define do create_table("s3_multipart_uploads", :force => true) do |t| t.string "location" t.string "upload_id" t.string "key" t.string "name" t.string "uploader" t.integer "size" t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end create_table "videos", :force => true do |t| t.string "name" t.integer "upload_id" t.integer "user_id" t.datetime "created_at" t.datetime "updated_at" end create_table "users", :force => true do |t| t.datetime "created_at", :null => false t.datetime "updated_at", :null => false end end
Version data entries
6 entries across 6 versions & 1 rubygems