Sha256: c734d7604e40b6eae4b089c9399f660b43da892c390caa6a4fd751bf00d670c3
Contents?: true
Size: 1.58 KB
Versions: 6
Compression:
Stored size: 1.58 KB
Contents
#--- # Excerpted from "Scripted GUI Testing With Ruby", # published by The Pragmatic Bookshelf. # Copyrights apply to this code. It may not be used to create training material, # courses, books, articles, and the like. Contact us if you are in doubt. # We make no guarantees that this code is fit for any purpose. # Visit http://www.pragmaticprogrammer.com/titles/idgtr for more book information. #--- # This file is auto-generated from the current state of the database. Instead of editing this file, # please use the migrations feature of ActiveRecord 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 => 2) do create_table "guests", :force => true do |t| t.integer "party_id" t.string "name" t.boolean "attending" t.datetime "created_at" t.datetime "updated_at" end create_table "parties", :force => true do |t| t.string "name" t.text "description" t.text "location" t.datetime "begins_at" t.datetime "ends_at" t.string "permalink" t.datetime "created_at" t.datetime "updated_at" end end
Version data entries
6 entries across 6 versions & 1 rubygems