Changeset 112
- Timestamp:
- 06/13/08 22:55:12 (5 months ago)
- Location:
- trunk
- Files:
-
- 1 added
- 5 modified
-
config/boot.rb (modified) (2 diffs)
-
db/schema.rb (modified) (6 diffs)
-
public/javascripts/controls.js (modified) (1 diff)
-
public/javascripts/dragdrop.js (modified) (1 diff)
-
public/javascripts/effects.js (modified) (1 diff)
-
script/dbconsole (added)
Legend:
- Unmodified
- Added
- Removed
-
trunk/config/boot.rb
r72 r112 25 25 end 26 26 27 # FIXME : Ruby 1.928 27 def preinitialize 29 load(preinitializer_path) if File.exist s?(preinitializer_path)28 load(preinitializer_path) if File.exist?(preinitializer_path) 30 29 end 31 30 … … 45 44 def load_initializer 46 45 require "#{RAILS_ROOT}/vendor/rails/railties/lib/initializer" 46 Rails::Initializer.run(:install_gem_spec_stubs) 47 47 end 48 48 end -
trunk/db/schema.rb
r89 r112 1 1 # This file is auto-generated from the current state of the database. Instead of editing this file, 2 # please use the migrations feature of Active Record to incrementally modify your database, and2 # please use the migrations feature of Active Record to incrementally modify your database, and 3 3 # then regenerate this schema definition. 4 4 # … … 15 15 t.string "name" 16 16 t.string "value" 17 t.integer "project_id" 18 t.integer "stage_id" 17 t.integer "project_id", :limit => 11 18 t.integer "stage_id", :limit => 11 19 19 t.string "type" 20 20 t.datetime "created_at" 21 21 t.datetime "updated_at" 22 t.integer "prompt_on_deploy", : default => 022 t.integer "prompt_on_deploy", :limit => 11, :default => 0 23 23 end 24 24 … … 26 26 t.string "task" 27 27 t.text "log" 28 t.integer "success", : default => 029 t.integer "stage_id" 28 t.integer "success", :limit => 11, :default => 0 29 t.integer "stage_id", :limit => 11 30 30 t.datetime "created_at" 31 31 t.datetime "updated_at" 32 32 t.datetime "completed_at" 33 33 t.text "description" 34 t.integer "user_id" 34 t.integer "user_id", :limit => 11 35 35 t.string "excluded_host_ids" 36 36 end 37 37 38 38 create_table "deployments_roles", :id => false, :force => true do |t| 39 t.integer "deployment_id" 40 t.integer "role_id" 39 t.integer "deployment_id", :limit => 11 40 t.integer "role_id", :limit => 11 41 41 end 42 42 … … 67 67 68 68 create_table "recipes_stages", :id => false, :force => true do |t| 69 t.integer "recipe_id" 70 t.integer "stage_id" 69 t.integer "recipe_id", :limit => 11 70 t.integer "stage_id", :limit => 11 71 71 end 72 72 73 73 create_table "roles", :force => true do |t| 74 74 t.string "name" 75 t.integer "stage_id" 76 t.integer "host_id" 77 t.integer "primary", : default => 075 t.integer "stage_id", :limit => 11 76 t.integer "host_id", :limit => 11 77 t.integer "primary", :limit => 11, :default => 0 78 78 t.datetime "created_at" 79 79 t.datetime "updated_at" 80 t.integer "no_release", : default => 081 t.integer "ssh_port" 82 t.integer "no_symlink", : default => 080 t.integer "no_release", :limit => 11, :default => 0 81 t.integer "ssh_port", :limit => 11 82 t.integer "no_symlink", :limit => 11, :default => 0 83 83 end 84 84 … … 88 88 create_table "stages", :force => true do |t| 89 89 t.string "name" 90 t.integer "project_id" 90 t.integer "project_id", :limit => 11 91 91 t.datetime "created_at" 92 92 t.datetime "updated_at" … … 103 103 t.string "remember_token" 104 104 t.datetime "remember_token_expires_at" 105 t.integer "admin", :default => 0105 t.integer "admin", :limit => 11, :default => 0 106 106 t.string "time_zone", :default => "UTC" 107 107 end -
trunk/public/javascripts/controls.js
r67 r112 1 // Copyright (c) 2005-200 7Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)1 // Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) 2 2 // (c) 2005-2007 Ivan Krstic (http://blogs.law.harvard.edu/ivan) 3 3 // (c) 2005-2007 Jon Tirsen (http://www.tirsen.com) -
trunk/public/javascripts/dragdrop.js
r67 r112 1 // Copyright (c) 2005-200 7Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)1 // Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) 2 2 // (c) 2005-2007 Sammi Williams (http://www.oriontransfer.co.nz, sammi@oriontransfer.co.nz) 3 3 // -
trunk/public/javascripts/effects.js
r67 r112 1 // Copyright (c) 2005-200 7Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us)1 // Copyright (c) 2005-2008 Thomas Fuchs (http://script.aculo.us, http://mir.aculo.us) 2 2 // Contributors: 3 3 // Justin Palmer (http://encytemedia.com/)
