Sha256: 6ae71c3f2a2f2ca43b6a6a8c2c950c41e435bd8607146f772966fc29ffa1fa29
Contents?: true
Size: 1.99 KB
Versions: 1
Compression:
Stored size: 1.99 KB
Contents
# This file is auto-generated from the current state of the database. Instead of editing this file, # please use the migrations feature of Active Record to incrementally modify your database, and # then regenerate this schema definition. # # Note that this schema.rb definition is the authoritative source for your database schema. If you need # to create the application database on another system, you should be using db:schema:load, not running # all the migrations from scratch. The latter is a flawed and unsustainable approach (the more migrations # you'll amass, the slower it'll run and the greater likelihood for issues). # # It's strongly recommended to check this file into your version control system. ActiveRecord::Schema.define(:version => 20090602041838) do create_table "themes", :force => true do |t| t.string "current" end create_table "uploads", :force => true do |t| t.integer "creator_id" t.string "name" t.string "caption", :limit => 1000 t.text "description" t.boolean "is_public", :default => true t.integer "uploadable_id" t.string "uploadable_type" t.string "width" t.string "height" t.string "local_file_name" t.string "local_content_type" t.integer "local_file_size" t.datetime "local_updated_at" t.string "remote_file_name" t.string "remote_content_type" t.integer "remote_file_size" t.datetime "remote_updated_at" t.datetime "created_at" t.datetime "updated_at" end add_index "uploads", ["creator_id"], :name => "index_uploads_on_creator_id" add_index "uploads", ["local_content_type"], :name => "index_uploads_on_local_content_type" add_index "uploads", ["uploadable_id"], :name => "index_uploads_on_uploadable_id" add_index "uploads", ["uploadable_type"], :name => "index_uploads_on_uploadable_type" create_table "users", :force => true do |t| t.string "name" t.datetime "created_at" t.datetime "updated_at" end end
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
disguise-0.1.3 | test/rails_root/db/schema.rb |