rails 2.2.3 → 2.3.2

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of rails might be problematic. Click here for more details.

Files changed (229) hide show
  1. data/CHANGELOG +272 -191
  2. data/MIT-LICENSE +1 -1
  3. data/README +6 -19
  4. data/Rakefile +24 -71
  5. data/bin/rails +1 -0
  6. data/builtin/rails_info/rails/info.rb +12 -8
  7. data/configs/databases/mysql.yml +3 -0
  8. data/configs/initializers/backtrace_silencers.rb +7 -0
  9. data/configs/initializers/new_rails_defaults.rb +2 -0
  10. data/configs/initializers/session_store.rb +15 -0
  11. data/dispatches/config.ru +7 -0
  12. data/doc/README_FOR_APP +2 -5
  13. data/environments/boot.rb +1 -0
  14. data/environments/environment.rb +14 -48
  15. data/environments/production.rb +11 -7
  16. data/environments/test.rb +6 -0
  17. data/helpers/application_controller.rb +10 -0
  18. data/helpers/test_helper.rb +1 -1
  19. data/html/500.html +0 -3
  20. data/html/index.html +1 -0
  21. data/lib/commands/about.rb +1 -1
  22. data/lib/commands/dbconsole.rb +18 -2
  23. data/lib/commands/plugin.rb +4 -3
  24. data/lib/commands/runner.rb +13 -7
  25. data/lib/commands/server.rb +98 -33
  26. data/lib/console_app.rb +4 -4
  27. data/lib/console_with_helpers.rb +2 -23
  28. data/lib/dispatcher.rb +1 -1
  29. data/lib/fcgi_handler.rb +12 -10
  30. data/lib/initializer.rb +108 -41
  31. data/lib/rails/backtrace_cleaner.rb +54 -0
  32. data/lib/rails/gem_dependency.rb +124 -94
  33. data/lib/rails/plugin.rb +49 -6
  34. data/lib/rails/plugin/loader.rb +66 -27
  35. data/lib/rails/plugin/locator.rb +1 -1
  36. data/lib/rails/rack.rb +3 -1
  37. data/lib/rails/rack/debugger.rb +21 -0
  38. data/lib/rails/rack/log_tailer.rb +35 -0
  39. data/lib/rails/rack/metal.rb +51 -0
  40. data/lib/rails/rack/static.rb +15 -4
  41. data/lib/rails/version.rb +2 -2
  42. data/lib/rails_generator/base.rb +3 -0
  43. data/lib/rails_generator/commands.rb +8 -3
  44. data/lib/rails_generator/generators/applications/app/app_generator.rb +210 -136
  45. data/lib/rails_generator/generators/applications/app/scm/git.rb +16 -0
  46. data/lib/rails_generator/generators/applications/app/scm/scm.rb +8 -0
  47. data/lib/rails_generator/generators/applications/app/scm/svn.rb +7 -0
  48. data/lib/rails_generator/generators/applications/app/template_runner.rb +401 -0
  49. data/lib/rails_generator/generators/components/controller/USAGE +12 -11
  50. data/lib/rails_generator/generators/components/controller/controller_generator.rb +7 -1
  51. data/lib/rails_generator/generators/components/controller/templates/helper_test.rb +4 -0
  52. data/lib/rails_generator/generators/components/helper/USAGE +24 -0
  53. data/lib/rails_generator/generators/components/helper/helper_generator.rb +25 -0
  54. data/lib/rails_generator/generators/components/helper/templates/helper.rb +2 -0
  55. data/lib/rails_generator/generators/components/helper/templates/helper_test.rb +4 -0
  56. data/lib/rails_generator/generators/components/metal/USAGE +8 -0
  57. data/lib/rails_generator/generators/components/metal/metal_generator.rb +8 -0
  58. data/lib/rails_generator/generators/components/metal/templates/metal.rb +12 -0
  59. data/lib/rails_generator/generators/components/resource/USAGE +2 -2
  60. data/lib/rails_generator/generators/components/resource/resource_generator.rb +2 -0
  61. data/lib/rails_generator/generators/components/resource/templates/helper_test.rb +4 -0
  62. data/lib/rails_generator/generators/components/scaffold/scaffold_generator.rb +2 -0
  63. data/lib/rails_generator/generators/components/scaffold/templates/controller.rb +1 -1
  64. data/lib/rails_generator/generators/components/scaffold/templates/functional_test.rb +4 -4
  65. data/lib/rails_generator/generators/components/scaffold/templates/helper_test.rb +4 -0
  66. data/lib/rails_generator/generators/components/scaffold/templates/layout.html.erb +1 -1
  67. data/lib/rails_generator/generators/components/scaffold/templates/view_edit.html.erb +2 -2
  68. data/lib/rails_generator/generators/components/scaffold/templates/view_index.html.erb +2 -2
  69. data/lib/rails_generator/generators/components/scaffold/templates/view_new.html.erb +2 -2
  70. data/lib/rails_generator/generators/components/scaffold/templates/view_show.html.erb +1 -1
  71. data/lib/rails_generator/secret_key_generator.rb +2 -0
  72. data/lib/tasks/databases.rake +13 -6
  73. data/lib/tasks/documentation.rake +2 -9
  74. data/lib/tasks/framework.rake +26 -1
  75. data/lib/tasks/gems.rake +33 -48
  76. data/lib/tasks/middleware.rake +7 -0
  77. data/lib/tasks/misc.rake +7 -0
  78. data/lib/tasks/statistics.rake +0 -1
  79. data/lib/tasks/testing.rake +5 -5
  80. data/lib/tasks/tmp.rake +2 -2
  81. data/lib/test_help.rb +16 -8
  82. metadata +92 -159
  83. data/bin/performance/request +0 -3
  84. data/bin/process/inspector +0 -3
  85. data/bin/process/reaper +0 -3
  86. data/bin/process/spawner +0 -3
  87. data/config.ru +0 -17
  88. data/configs/apache.conf +0 -40
  89. data/configs/lighttpd.conf +0 -54
  90. data/doc/guides/html/2_2_release_notes.html +0 -1185
  91. data/doc/guides/html/actioncontroller_basics.html +0 -1270
  92. data/doc/guides/html/activerecord_validations_callbacks.html +0 -749
  93. data/doc/guides/html/association_basics.html +0 -2585
  94. data/doc/guides/html/authors.html +0 -240
  95. data/doc/guides/html/benchmarking_and_profiling.html +0 -1018
  96. data/doc/guides/html/caching_with_rails.html +0 -583
  97. data/doc/guides/html/command_line.html +0 -434
  98. data/doc/guides/html/configuring.html +0 -438
  99. data/doc/guides/html/creating_plugins.html +0 -1594
  100. data/doc/guides/html/debugging_rails_applications.html +0 -1175
  101. data/doc/guides/html/finders.html +0 -1090
  102. data/doc/guides/html/form_helpers.html +0 -638
  103. data/doc/guides/html/getting_started_with_rails.html +0 -2066
  104. data/doc/guides/html/index.html +0 -349
  105. data/doc/guides/html/layouts_and_rendering.html +0 -1406
  106. data/doc/guides/html/migrations.html +0 -921
  107. data/doc/guides/html/routing_outside_in.html +0 -2213
  108. data/doc/guides/html/security.html +0 -1346
  109. data/doc/guides/html/testing_rails_applications.html +0 -1859
  110. data/doc/guides/source/2_2_release_notes.txt +0 -435
  111. data/doc/guides/source/actioncontroller_basics/changelog.txt +0 -5
  112. data/doc/guides/source/actioncontroller_basics/cookies.txt +0 -34
  113. data/doc/guides/source/actioncontroller_basics/csrf.txt +0 -32
  114. data/doc/guides/source/actioncontroller_basics/filters.txt +0 -119
  115. data/doc/guides/source/actioncontroller_basics/http_auth.txt +0 -24
  116. data/doc/guides/source/actioncontroller_basics/index.txt +0 -40
  117. data/doc/guides/source/actioncontroller_basics/introduction.txt +0 -9
  118. data/doc/guides/source/actioncontroller_basics/methods.txt +0 -39
  119. data/doc/guides/source/actioncontroller_basics/parameter_filtering.txt +0 -14
  120. data/doc/guides/source/actioncontroller_basics/params.txt +0 -93
  121. data/doc/guides/source/actioncontroller_basics/request_response_objects.txt +0 -43
  122. data/doc/guides/source/actioncontroller_basics/rescue.txt +0 -67
  123. data/doc/guides/source/actioncontroller_basics/session.txt +0 -187
  124. data/doc/guides/source/actioncontroller_basics/streaming.txt +0 -91
  125. data/doc/guides/source/actioncontroller_basics/verification.txt +0 -40
  126. data/doc/guides/source/active_record_basics.txt +0 -181
  127. data/doc/guides/source/activerecord_validations_callbacks.txt +0 -404
  128. data/doc/guides/source/association_basics.txt +0 -1840
  129. data/doc/guides/source/authors.txt +0 -39
  130. data/doc/guides/source/benchmarking_and_profiling/appendix.txt +0 -95
  131. data/doc/guides/source/benchmarking_and_profiling/digging_deeper.txt +0 -105
  132. data/doc/guides/source/benchmarking_and_profiling/edge_rails_features.txt +0 -185
  133. data/doc/guides/source/benchmarking_and_profiling/gameplan.txt +0 -27
  134. data/doc/guides/source/benchmarking_and_profiling/index.txt +0 -242
  135. data/doc/guides/source/benchmarking_and_profiling/rubyprof.txt +0 -179
  136. data/doc/guides/source/benchmarking_and_profiling/statistics.txt +0 -57
  137. data/doc/guides/source/caching_with_rails.txt +0 -367
  138. data/doc/guides/source/command_line.txt +0 -147
  139. data/doc/guides/source/configuring.txt +0 -225
  140. data/doc/guides/source/creating_plugins/acts_as_yaffle.txt +0 -191
  141. data/doc/guides/source/creating_plugins/appendix.txt +0 -46
  142. data/doc/guides/source/creating_plugins/controllers.txt +0 -59
  143. data/doc/guides/source/creating_plugins/core_ext.txt +0 -123
  144. data/doc/guides/source/creating_plugins/custom_route.txt +0 -69
  145. data/doc/guides/source/creating_plugins/gem.txt +0 -1
  146. data/doc/guides/source/creating_plugins/generator_method.txt +0 -89
  147. data/doc/guides/source/creating_plugins/helpers.txt +0 -51
  148. data/doc/guides/source/creating_plugins/index.txt +0 -52
  149. data/doc/guides/source/creating_plugins/migration_generator.txt +0 -156
  150. data/doc/guides/source/creating_plugins/models.txt +0 -76
  151. data/doc/guides/source/creating_plugins/odds_and_ends.txt +0 -69
  152. data/doc/guides/source/creating_plugins/test_setup.txt +0 -230
  153. data/doc/guides/source/debugging_rails_applications.txt +0 -733
  154. data/doc/guides/source/finders.txt +0 -668
  155. data/doc/guides/source/form_helpers.txt +0 -345
  156. data/doc/guides/source/getting_started_with_rails.txt +0 -1256
  157. data/doc/guides/source/images/belongs_to.png +0 -0
  158. data/doc/guides/source/images/bullet.gif +0 -0
  159. data/doc/guides/source/images/csrf.png +0 -0
  160. data/doc/guides/source/images/habtm.png +0 -0
  161. data/doc/guides/source/images/has_many.png +0 -0
  162. data/doc/guides/source/images/has_many_through.png +0 -0
  163. data/doc/guides/source/images/has_one.png +0 -0
  164. data/doc/guides/source/images/has_one_through.png +0 -0
  165. data/doc/guides/source/images/header_backdrop.png +0 -0
  166. data/doc/guides/source/images/icons/README +0 -5
  167. data/doc/guides/source/images/icons/callouts/1.png +0 -0
  168. data/doc/guides/source/images/icons/callouts/10.png +0 -0
  169. data/doc/guides/source/images/icons/callouts/11.png +0 -0
  170. data/doc/guides/source/images/icons/callouts/12.png +0 -0
  171. data/doc/guides/source/images/icons/callouts/13.png +0 -0
  172. data/doc/guides/source/images/icons/callouts/14.png +0 -0
  173. data/doc/guides/source/images/icons/callouts/15.png +0 -0
  174. data/doc/guides/source/images/icons/callouts/2.png +0 -0
  175. data/doc/guides/source/images/icons/callouts/3.png +0 -0
  176. data/doc/guides/source/images/icons/callouts/4.png +0 -0
  177. data/doc/guides/source/images/icons/callouts/5.png +0 -0
  178. data/doc/guides/source/images/icons/callouts/6.png +0 -0
  179. data/doc/guides/source/images/icons/callouts/7.png +0 -0
  180. data/doc/guides/source/images/icons/callouts/8.png +0 -0
  181. data/doc/guides/source/images/icons/callouts/9.png +0 -0
  182. data/doc/guides/source/images/icons/caution.png +0 -0
  183. data/doc/guides/source/images/icons/example.png +0 -0
  184. data/doc/guides/source/images/icons/home.png +0 -0
  185. data/doc/guides/source/images/icons/important.png +0 -0
  186. data/doc/guides/source/images/icons/next.png +0 -0
  187. data/doc/guides/source/images/icons/note.png +0 -0
  188. data/doc/guides/source/images/icons/prev.png +0 -0
  189. data/doc/guides/source/images/icons/tip.png +0 -0
  190. data/doc/guides/source/images/icons/up.png +0 -0
  191. data/doc/guides/source/images/icons/warning.png +0 -0
  192. data/doc/guides/source/images/polymorphic.png +0 -0
  193. data/doc/guides/source/images/rails_logo_remix.gif +0 -0
  194. data/doc/guides/source/images/ruby_on_rails_by_mike_rundle2.gif +0 -0
  195. data/doc/guides/source/images/session_fixation.png +0 -0
  196. data/doc/guides/source/index.txt +0 -118
  197. data/doc/guides/source/layouts_and_rendering.txt +0 -982
  198. data/doc/guides/source/migrations/anatomy_of_a_migration.txt +0 -85
  199. data/doc/guides/source/migrations/changelog.txt +0 -5
  200. data/doc/guides/source/migrations/creating_a_migration.txt +0 -109
  201. data/doc/guides/source/migrations/foreign_keys.txt +0 -8
  202. data/doc/guides/source/migrations/index.txt +0 -22
  203. data/doc/guides/source/migrations/rakeing_around.txt +0 -111
  204. data/doc/guides/source/migrations/scheming.txt +0 -47
  205. data/doc/guides/source/migrations/using_models_in_migrations.txt +0 -46
  206. data/doc/guides/source/migrations/writing_a_migration.txt +0 -159
  207. data/doc/guides/source/routing_outside_in.txt +0 -986
  208. data/doc/guides/source/security.txt +0 -984
  209. data/doc/guides/source/stylesheets/base.css +0 -358
  210. data/doc/guides/source/stylesheets/forms.css +0 -35
  211. data/doc/guides/source/stylesheets/more.css +0 -82
  212. data/doc/guides/source/templates/guides.html.erb +0 -97
  213. data/doc/guides/source/templates/inline.css +0 -165
  214. data/doc/guides/source/testing_rails_applications.txt +0 -995
  215. data/helpers/application.rb +0 -15
  216. data/lib/commands/performance/request.rb +0 -6
  217. data/lib/commands/process/inspector.rb +0 -68
  218. data/lib/commands/process/reaper.rb +0 -149
  219. data/lib/commands/process/spawner.rb +0 -219
  220. data/lib/commands/process/spinner.rb +0 -57
  221. data/lib/commands/servers/base.rb +0 -31
  222. data/lib/commands/servers/lighttpd.rb +0 -94
  223. data/lib/commands/servers/mongrel.rb +0 -69
  224. data/lib/commands/servers/new_mongrel.rb +0 -16
  225. data/lib/commands/servers/thin.rb +0 -25
  226. data/lib/commands/servers/webrick.rb +0 -66
  227. data/lib/rails/mongrel_server/commands.rb +0 -342
  228. data/lib/rails/mongrel_server/handler.rb +0 -55
  229. data/lib/rails/rack/logger.rb +0 -28
@@ -1,85 +0,0 @@
1
- == Anatomy Of A Migration ==
2
-
3
- Before I dive into the details of a migration, here are a few examples of the sorts of things you can do:
4
-
5
- [source, ruby]
6
- ------------------------
7
- class CreateProducts < ActiveRecord::Migration
8
- def self.up
9
- create_table :products do |t|
10
- t.string :name
11
- t.text :description
12
-
13
- t.timestamps
14
- end
15
- end
16
-
17
- def self.down
18
- drop_table :products
19
- end
20
- end
21
- ------------------------
22
-
23
- This migration adds a table called `products` with a string column called `name` and a text column called `description`. A primary key column called `id` will also be added, however since this is the default we do not need to ask for this. The timestamp columns `created_at` and `updated_at` which Active Record populates automatically will also be added. Reversing this migration is as simple as dropping the table.
24
-
25
- Migrations are not limited to changing the schema. You can also use them to fix bad data in the database or populate new fields:
26
-
27
- [source, ruby]
28
- ------------------------
29
- class AddReceiveNewsletterToUsers < ActiveRecord::Migration
30
- def self.up
31
- change_table :users do |t|
32
- t.boolean :receive_newsletter, :default => false
33
- end
34
- User.update_all ["receive_newsletter = ?", true]
35
- end
36
-
37
- def self.down
38
- remove_column :users, :receive_newsletter
39
- end
40
- end
41
- ------------------------
42
-
43
- This migration adds an `receive_newsletter` column to the `users` table. We want it to default to `false` for new users, but existing users are considered
44
- to have already opted in, so we use the User model to set the flag to `true` for existing users.
45
-
46
- NOTE: Some <<models,caveats>> apply to using models in your migrations.
47
-
48
- === Migrations are classes
49
- A migration is a subclass of ActiveRecord::Migration that implements two class methods: +up+ (perform the required transformations) and +down+ (revert them).
50
-
51
- Active Record provides methods that perform common data definition tasks in a database independent way (you'll read about them in detail later):
52
-
53
- * `create_table`
54
- * `change_table`
55
- * `drop_table`
56
- * `add_column`
57
- * `remove_column`
58
- * `change_column`
59
- * `rename_column`
60
- * `add_index`
61
- * `remove_index`
62
-
63
- If you need to perform tasks specific to your database (for example create a <<foreign_key,foreign key>> constraint) then the `execute` function allows you to execute arbitrary SQL. A migration is just a regular Ruby class so you're not limited to these functions. For example after adding a column you could
64
- write code to set the value of that column for existing records (if necessary using your models).
65
-
66
- On databases that support transactions with statements that change the schema (such as PostgreSQL), migrations are wrapped in a transaction. If the database does not support this (for example MySQL and SQLite) then when a migration fails the parts of it that succeeded will not be rolled back. You will have to unpick the changes that were made by hand.
67
-
68
- === What's in a name ===
69
-
70
- Migrations are stored in files in `db/migrate`, one for each migration class. The name of the file is of the form `YYYYMMDDHHMMSS_create_products.rb`, that is to say a UTC timestamp identifying the migration followed by an underscore followed by the name of the migration. The migration class' name must match (the camelcased version of) the latter part of the file name. For example `20080906120000_create_products.rb` should define CreateProducts and `20080906120001_add_details_to_products.rb` should define AddDetailsToProducts. If you do feel the need to change the file name then you MUST update the name of the class inside or Rails will complain about a missing class.
71
-
72
- Internally Rails only uses the migration's number (the timestamp) to identify them. Prior to Rails 2.1 the migration number started at 1 and was incremented each time a migration was generated. With multiple developers it was easy for these to clash requiring you to rollback migrations and renumber them. With Rails 2.1 this is largely avoided by using the creation time of the migration to identify them. You can revert to the old numbering scheme by setting `config.active_record.timestamped_migrations` to `false` in `environment.rb`.
73
-
74
- The combination of timestamps and recording which migrations have been run allows Rails to handle common situations that occur with multiple developers.
75
-
76
- For example Alice adds migrations `20080906120000` and `20080906123000` and Bob adds `20080906124500` and runs it. Alice finishes her changes and checks in her migrations and Bob pulls down the latest changes. Rails knows that it has not run Alice's two migrations so `rake db:migrate` would run them (even though Bob's migration with a later timestamp has been run), and similarly migrating down would not run their down methods.
77
-
78
- Of course this is no substitution for communication within the team, for example if Alice's migration removed a table that Bob's migration assumed the existence of then trouble will still occur.
79
-
80
- === Changing migrations ===
81
-
82
- Occasionally you will make a mistake while writing a migration. If you have already run the migration then you cannot just edit the migration and run the migration again: Rails thinks it has already run the migration and so will do nothing when you run `rake db:migrate`. You must rollback the migration (for example with `rake db:rollback`), edit your migration and then run `rake db:migrate` to run the corrected version.
83
-
84
- In general editing existing migrations is not a good idea: you will be creating extra work for yourself and your co-workers and cause major headaches if the existing version of the migration has already been run on production machines. Instead you should write a new migration that performs the changes you require. Editing a freshly generated migration that has not yet been committed to source control (or more generally which has not been propagated beyond your development machine) is relatively harmless. Just use some common sense.
85
-
@@ -1,5 +0,0 @@
1
- == Changelog ==
2
-
3
- http://rails.lighthouseapp.com/projects/16213-rails-guides/tickets/6[Lighthouse ticket]
4
-
5
- * September 14, 2008: initial version by link:../authors.html#fcheung[Frederick Cheung]
@@ -1,109 +0,0 @@
1
- == Creating A Migration ==
2
-
3
- === Creating a model ===
4
-
5
- The model and scaffold generators will create migrations appropriate for adding a new model. This migration will already contain instructions for creating the relevant table. If you tell Rails what columns you want then statements for adding those will also be created. For example, running
6
-
7
- `ruby script/generate model Product name:string description:text` will create a migration that looks like this
8
-
9
- [source, ruby]
10
- -----------------------
11
- class CreateProducts < ActiveRecord::Migration
12
- def self.up
13
- create_table :products do |t|
14
- t.string :name
15
- t.text :description
16
-
17
- t.timestamps
18
- end
19
- end
20
-
21
- def self.down
22
- drop_table :products
23
- end
24
- end
25
- -----------------------
26
-
27
- You can append as many column name/type pairs as you want. By default `t.timestamps` (which creates the `updated_at` and `created_at` columns that
28
- are automatically populated by Active Record) will be added for you.
29
-
30
- === Creating a standalone migration ===
31
- If you are creating migrations for other purposes (for example to add a column to an existing table) then you can use the migration generator:
32
-
33
- `ruby script/generate migration AddPartNumberToProducts`
34
-
35
- This will create an empty but appropriately named migration:
36
-
37
- [source, ruby]
38
- -----------------------
39
- class AddPartNumberToProducts < ActiveRecord::Migration
40
- def self.up
41
- end
42
-
43
- def self.down
44
- end
45
- end
46
- -----------------------
47
-
48
- If the migration name is of the form AddXXXToYYY or RemoveXXXFromY and is followed by a list of column names and types then a migration containing
49
- the appropriate add and remove column statements will be created.
50
-
51
- `ruby script/generate migration AddPartNumberToProducts part_number:string`
52
-
53
- will generate
54
-
55
- [source, ruby]
56
- -----------------------
57
- class AddPartNumberToProducts < ActiveRecord::Migration
58
- def self.up
59
- add_column :products, :part_number, :string
60
- end
61
-
62
- def self.down
63
- remove_column :products, :part_number
64
- end
65
- end
66
- -----------------------
67
-
68
- Similarly,
69
-
70
- `ruby script/generate migration RemovePartNumberFromProducts part_number:string`
71
-
72
- generates
73
-
74
- [source, ruby]
75
- -----------------------
76
- class RemovePartNumberFromProducts < ActiveRecord::Migration
77
- def self.up
78
- remove_column :products, :part_number
79
- end
80
-
81
- def self.down
82
- add_column :products, :part_number, :string
83
- end
84
- end
85
- -----------------------
86
-
87
- You are not limited to one magically generated column, for example
88
-
89
- `ruby script/generate migration AddDetailsToProducts part_number:string price:decimal`
90
-
91
- generates
92
-
93
- [source, ruby]
94
- -----------------------
95
- class AddDetailsToProducts < ActiveRecord::Migration
96
- def self.up
97
- add_column :products, :part_number, :string
98
- add_column :products, :price, :decimal
99
- end
100
-
101
- def self.down
102
- remove_column :products, :price
103
- remove_column :products, :part_number
104
- end
105
- end
106
- -----------------------
107
-
108
- As always, what has been generated for you is just a starting point. You can add or remove from it as you see fit.
109
-
@@ -1,8 +0,0 @@
1
- [[foreign_key]]
2
- == Active Record and Referential Integrity ==
3
- The Active Record way is that intelligence belongs in your models, not in the database. As such, features such as triggers or foreign key constraints, which push some of that intelligence back into the database are not heavily used.
4
-
5
- Validations such as `validates_uniqueness_of` are one way in which models can enforce data integrity. The `:dependent` option on associations allows models to automatically destroy child objects when the parent is destroyed. Like anything which operates at the application level these cannot guarantee referential integrity and so some people augment them with foreign key constraints.
6
-
7
- Although Active Record does not provide any tools for working directly with such features, the `execute` method can be used to execute arbitrary SQL. There are also a number of plugins such as http://agilewebdevelopment.com/plugins/search?search=redhillonrails[redhillonrails] which add foreign key support to Active Record (including support for dumping foreign keys in `schema.rb`).
8
-
@@ -1,22 +0,0 @@
1
- Migrations
2
- ==========
3
-
4
- Migrations are a convenient way for you to alter your database in a structured and organised manner. You could edit fragments of SQL by hand but you would then be responsible for telling other developers that they need to go and run it. You'd also have to keep track of which changes need to be run against the production machines next time you deploy. Active Record tracks which migrations have already been run so all you have to do is update your source and run `rake db:migrate`. Active Record will work out which migrations should be run.
5
-
6
- Migrations also allow you to describe these transformations using Ruby. The great thing about this is that (like most of Active Record's functionality) it is database independent: you don't need to worry about the precise syntax of CREATE TABLE any more that you worry about variations on SELECT * (you can drop down to raw SQL for database specific features). For example you could use SQLite3 in development, but MySQL in production.
7
-
8
- You'll learn all about migrations including:
9
-
10
- * The generators you can use to create them
11
- * The methods Active Record provides to manipulate your database
12
- * The Rake tasks that manipulate them
13
- * How they relate to `schema.rb`
14
-
15
- include::anatomy_of_a_migration.txt[]
16
- include::creating_a_migration.txt[]
17
- include::writing_a_migration.txt[]
18
- include::rakeing_around.txt[]
19
- include::using_models_in_migrations.txt[]
20
- include::scheming.txt[]
21
- include::foreign_keys.txt[]
22
- include::changelog.txt[]
@@ -1,111 +0,0 @@
1
- == Running Migrations ==
2
-
3
- Rails provides a set of rake tasks to work with migrations which boils down to running certain sets of migrations. The very first migration related rake task you use will probably be `db:migrate`. In its most basic form it just runs the `up` method for all the migrations that have not yet been run. If there are no such migrations it exits.
4
-
5
- If you specify a target version, Active Record will run the required migrations (up or down) until it has reached the specified version. The
6
- version is the numerical prefix on the migration's filename. For example to migrate to version 20080906120000 run
7
-
8
- ------------------------------------
9
- rake db:migrate VERSION=20080906120000
10
- ------------------------------------
11
-
12
- If this is greater than the current version (i.e. it is migrating upwards) this will run the `up` method on all migrations up to and including 20080906120000, if migrating downwards this will run the `down` method on all the migrations down to, but not including, 20080906120000.
13
-
14
- === Rolling back ===
15
-
16
- A common task is to rollback the last migration, for example if you made a mistake in it and wish to correct it. Rather than tracking down the version number associated with the previous migration you can run
17
-
18
- ------------------
19
- rake db:rollback
20
- ------------------
21
-
22
- This will run the `down` method from the latest migration. If you need to undo several migrations you can provide a `STEP` parameter:
23
-
24
- ------------------
25
- rake db:rollback STEP=3
26
- ------------------
27
-
28
- will run the `down` method from the last 3 migrations.
29
-
30
- The `db:migrate:redo` task is a shortcut for doing a rollback and then migrating back up again. As with the `db:rollback` task you can use the `STEP` parameter if you need to go more than one version back, for example
31
-
32
- ------------------
33
- rake db:migrate:redo STEP=3
34
- ------------------
35
-
36
- Neither of these Rake tasks do anything you could not do with `db:migrate`, they are simply more convenient since you do not need to explicitly specify the version to migrate to.
37
-
38
- Lastly, the `db:reset` task will drop the database, recreate it and load the current schema into it.
39
-
40
- NOTE: This is not the same as running all the migrations - see the section on <<schema,schema.rb>>.
41
-
42
- === Being Specific ===
43
-
44
- If you need to run a specific migration up or down the `db:migrate:up` and `db:migrate:down` tasks will do that. Just specify the appropriate version and the corresponding migration will have its `up` or `down` method invoked, for example
45
-
46
- ------------------
47
- rake db:migrate:up VERSION=20080906120000
48
- ------------------
49
-
50
- will run the `up` method from the 20080906120000 migration. These tasks check whether the migration has already run, so for example `db:migrate:up VERSION=20080906120000` will do nothing if Active Record believes that 20080906120000 has already been run.
51
-
52
-
53
- === Being talkative ===
54
-
55
- By default migrations tell you exactly what they're doing and how long it took.
56
- A migration creating a table and adding an index might produce output like this
57
- -------------------------
58
- == 20080906170109 CreateProducts: migrating ===================================
59
- -- create_table(:products)
60
- -> 0.0021s
61
- -- add_index(:products, :name)
62
- -> 0.0026s
63
- == 20080906170109 CreateProducts: migrated (0.0059s) ==========================
64
- -------------------------
65
- Several methods are provided that allow you to control all this:
66
-
67
- * `suppress_messages` suppresses any output generated by its block
68
- * `say` outputs text (the second argument controls whether it is indented or not)
69
- * `say_with_time` outputs text along with how long it took to run its block. If the block returns an integer it assumes it is the number of rows affected.
70
-
71
- For example, this migration
72
-
73
- [source, ruby]
74
- ----------------------
75
- class CreateProducts < ActiveRecord::Migration
76
- def self.up
77
- suppress_messages do
78
- create_table :products do |t|
79
- t.string :name
80
- t.text :description
81
- t.timestamps
82
- end
83
- end
84
- say "Created a table"
85
- suppress_messages {add_index :products, :name}
86
- say "and an index!", true
87
- say_with_time 'Waiting for a while' do
88
- sleep 10
89
- 250
90
- end
91
- end
92
-
93
- def self.down
94
- drop_table :products
95
- end
96
- end
97
- ----------------------
98
-
99
- generates the following output
100
- ----------------------
101
- == 20080906170109 CreateProducts: migrating ===================================
102
- -- Created a table
103
- -> and an index!
104
- -- Waiting for a while
105
- -> 10.0001s
106
- -> 250 rows
107
- == 20080906170109 CreateProducts: migrated (10.0097s) =========================
108
- ----------------------
109
-
110
- If you just want Active Record to shut up then running `rake db:migrate VERBOSE=false` will suppress any output.
111
-
@@ -1,47 +0,0 @@
1
- == Schema dumping and you ==
2
- [[schema]]
3
- === What are schema files for? ===
4
- Migrations, mighty as they may be, are not the authoritative source for your database schema. That role falls to either `schema.rb` or an SQL file which Active Record generates by examining the database. They are not designed to be edited, they just represent the current state of the database.
5
-
6
- There is no need (and it is error prone) to deploy a new instance of an app by replaying the entire migration history. It is much simpler and faster to just load into the database a description of the current schema.
7
-
8
- For example, this is how the test database is created: the current development database is dumped (either to `schema.rb` or `development.sql`) and then loaded into the test database.
9
-
10
- Schema files are also useful if you want a quick look at what attributes an Active Record object has. This information is not in the model's code and is frequently spread across several migrations but is all summed up in the schema file. The http://agilewebdevelopment.com/plugins/annotate_models[annotate_models] plugin, which automatically adds (and updates) comments at the top of each model summarising the schema, may also be of interest.
11
-
12
- === Types of schema dumps ===
13
- There are two ways to dump the schema. This is set in `config/environment.rb` by the `config.active_record.schema_format` setting, which may be either `:sql` or `:ruby`.
14
-
15
- If `:ruby` is selected then the schema is stored in `db/schema.rb`. If you look at this file you'll find that it looks an awful lot like one very big migration:
16
-
17
- [source, ruby]
18
- --------------------------------------
19
- ActiveRecord::Schema.define(:version => 20080906171750) do
20
- create_table "authors", :force => true do |t|
21
- t.string "name"
22
- t.datetime "created_at"
23
- t.datetime "updated_at"
24
- end
25
-
26
- create_table "products", :force => true do |t|
27
- t.string "name"
28
- t.text "description"
29
- t.datetime "created_at"
30
- t.datetime "updated_at"
31
- t.string "part_number"
32
- end
33
- end
34
- --------------------------------------
35
-
36
- In many ways this is exactly what it is. This file is created by inspecting the database and expressing its structure using `create_table`, `add_index` and so on. Because this is database independent it could be loaded into any database that Active Record supports. This could be very useful if you were to distribute an application that is able to run against multiple databases.
37
-
38
- There is however a trade-off: `schema.rb` cannot express database specific items such as foreign key constraints, triggers or stored procedures. While in a migration you can execute custom SQL statements, the schema dumper cannot reconstitute those statements from the database. If you are using features like this then you should set the schema format to `:sql`.
39
-
40
- Instead of using Active Record's schema dumper the database's structure will be dumped using a tool specific to that database (via the `db:structure:dump` Rake task) into `db/#\{RAILS_ENV\}_structure.sql`. For example for PostgreSQL the `pg_dump` utility is used and for MySQL this file will contain the output of SHOW CREATE TABLE for the various tables. Loading this schema is simply a question of executing the SQL statements contained inside.
41
-
42
- By definition this will be a perfect copy of the database's structure but this will usually prevent loading the schema into a database other than the one used to create it.
43
-
44
- === Schema dumps and source control ===
45
-
46
- Because they are the authoritative source for your database schema, it is strongly recommended that you check them into source control.
47
-
@@ -1,46 +0,0 @@
1
- [[models]]
2
- == Using Models In Your Migrations ==
3
- When creating or updating data in a migration it is often tempting to use one of your models. After all they exist to provide easy access to the underlying data. This can be done but some caution should be observed.
4
-
5
- Consider for example a migration that uses the Product model to update a row in the corresponding table. Alice later updates the Product model, adding a new column and a validation on it. Bob comes back from holiday, updates the source and runs outstanding migrations with `rake db:migrate`, including the one that used the Product model. When the migration runs the source is up to date and so the Product model has the validation added by Alice. The database however is still old and so does not have that column and an error ensues because that validation is on a column that does not yet exist.
6
-
7
- Frequently I just want to update rows in the database without writing out the SQL by hand: I'm not using anything specific to the model. One pattern for this is to define a copy of the model inside the migration itself, for example:
8
-
9
- [source, ruby]
10
- -------------------------
11
- class AddPartNumberToProducts < ActiveRecord::Migration
12
- class Product < ActiveRecord::Base
13
- end
14
-
15
- def self.up
16
- ...
17
- end
18
-
19
- def self.down
20
- ...
21
- end
22
- end
23
- -------------------------
24
- The migration has its own minimal copy of the Product model and no longer cares about the Product model defined in the application.
25
-
26
- === Dealing with changing models ===
27
-
28
- For performance reasons information about the columns a model has is cached. For example if you add a column to a table and then try and use the corresponding model to insert a new row it may try and use the old column information. You can force Active Record to re-read the column information with the `reset_column_information` method, for example
29
-
30
- [source, ruby]
31
- -------------------------
32
- class AddPartNumberToProducts < ActiveRecord::Migration
33
- class Product < ActiveRecord::Base
34
- end
35
-
36
- def self.up
37
- add_column :product, :part_number, :string
38
- Product.reset_column_information
39
- ...
40
- end
41
-
42
- def self.down
43
- ...
44
- end
45
- end
46
- -------------------------
@@ -1,159 +0,0 @@
1
- == Writing a Migration ==
2
-
3
- Once you have created your migration using one of the generators it's time to get to work!
4
-
5
- === Creating a table ===
6
-
7
- `create_table` will be one of your workhorses. A typical use would be
8
-
9
- [source, ruby]
10
- ---------------------
11
- create_table :products do |t|
12
- t.string :name
13
- end
14
- ---------------------
15
- which creates a `products` table with a column called `name` (and as discussed below, an implicit `id` column).
16
-
17
- The object yielded to the block allows you create columns on the table. There are two ways of doing this. The first looks like
18
-
19
- [source, ruby]
20
- ---------------------
21
- create_table :products do |t|
22
- t.column :name, :string, :null => false
23
- end
24
- ---------------------
25
-
26
- the second form, the so called "sexy" migrations, drops the somewhat redundant column method. Instead, the `string`, `integer` etc. methods create a column of that type. Subsequent parameters are identical.
27
-
28
- [source, ruby]
29
- ---------------------
30
- create_table :products do |t|
31
- t.string :name, :null => false
32
- end
33
- ---------------------
34
-
35
- By default `create_table` will create a primary key called `id`. You can change the name of the primary key with the `:primary_key` option (don't forget to update the corresponding model) or if you don't want a primary key at all (for example for a HABTM join table) you can pass `:id => false`. If you need to pass database specific options you can place an sql fragment in the `:options` option. For example
36
-
37
- [source, ruby]
38
- ---------------------
39
- create_table :products, :options => "ENGINE=BLACKHOLE" do |t|
40
- t.string :name, :null => false
41
- end
42
- ---------------------
43
- Will append `ENGINE=BLACKHOLE` to the sql used to create the table (when using MySQL the default is "ENGINE=InnoDB").
44
-
45
- The types Active Record supports are `:primary_key`, `:string`, `:text`, `:integer`, `:float`, `:decimal`, `:datetime`, `:timestamp`, `:time`, `:date`, `:binary`, `:boolean`.
46
-
47
- These will be mapped onto an appropriate underlying database type, for example with MySQL `:string` is mapped to `VARCHAR(255)`. You can create columns of
48
- types not supported by Active Record when using the non sexy syntax, for example
49
-
50
- [source, ruby]
51
- ---------------------
52
- create_table :products do |t|
53
- t.column :name, 'polygon', :null => false
54
- end
55
- ---------------------
56
- This may however hinder portability to other databases.
57
-
58
- === Changing tables ===
59
-
60
- `create_table`'s close cousin is `change_table`. Used for changing existing tables, it is used in a similar fashion to `create_table` but the object yielded to the block knows more tricks. For example
61
-
62
- [source, ruby]
63
- ---------------------
64
- change_table :products do |t|
65
- t.remove :description, :name
66
- t.string :part_number
67
- t.index :part_number
68
- t.rename :upccode, :upc_code
69
- end
70
- ---------------------
71
- removes the `description` column, creates a `part_number` column and adds an index on it. Finally it renames the `upccode` column. This is the same as doing
72
-
73
- [source, ruby]
74
- ---------------------
75
- remove_column :products, :description
76
- remove_column :products, :name
77
- add_column :products, :part_number, :string
78
- add_index :products, :part_number
79
- rename_column :products, :upccode, :upc_code
80
- ---------------------
81
-
82
- You don't have to keep repeating the table name and it groups all the statements related to modifying one particular table. The individual transformation names are also shorter, for example `remove_column` becomes just `remove` and `add_index` becomes just `index`.
83
-
84
- === Special helpers ===
85
-
86
- Active Record provides some shortcuts for common functionality. It is for example very common to add both the `created_at` and `updated_at` columns and so there is a method that does exactly that:
87
-
88
- [source, ruby]
89
- ---------------------
90
- create_table :products do |t|
91
- t.timestamps
92
- end
93
- ---------------------
94
- will create a new products table with those two columns whereas
95
-
96
- [source, ruby]
97
- ---------------------
98
- change_table :products do |t|
99
- t.timestamps
100
- end
101
- ---------------------
102
- adds those columns to an existing table.
103
-
104
- The other helper is called `references` (also available as `belongs_to`). In its simplest form it just adds some readability
105
-
106
- [source, ruby]
107
- ---------------------
108
- create_table :products do |t|
109
- t.references :category
110
- end
111
- ---------------------
112
-
113
- will create a `category_id` column of the appropriate type. Note that you pass the model name, not the column name. Active Record adds the `_id` for you. If you have polymorphic belongs_to associations then `references` will add both of the columns required:
114
-
115
- [source, ruby]
116
- ---------------------
117
- create_table :products do |t|
118
- t.references :attachment, :polymorphic => {:default => 'Photo'}
119
- end
120
- ---------------------
121
- will add an `attachment_id` column and a string `attachment_type` column with a default value of 'Photo'.
122
-
123
- NOTE: The `references` helper does not actually create foreign key constraints for you. You will need to use `execute` for that or a plugin that adds <<foreign_key,foreign key support>>.
124
-
125
- If the helpers provided by Active Record aren't enough you can use the `execute` function to execute arbitrary SQL.
126
-
127
- For more details and examples of individual methods check the API documentation, in particular the documentation for http://api.rubyonrails.com/classes/ActiveRecord/ConnectionAdapters/SchemaStatements.html[ActiveRecord::ConnectionAdapters::SchemaStatements] (which provides the methods available in the `up` and `down` methods), http://api.rubyonrails.com/classes/ActiveRecord/ConnectionAdapters/TableDefinition.html[ActiveRecord::ConnectionAdapters::TableDefinition] (which provides the methods available on the object yielded by `create_table`) and http://api.rubyonrails.com/classes/ActiveRecord/ConnectionAdapters/Table.html[ActiveRecord::ConnectionAdapters::Table] (which provides the methods available on the object yielded by `change_table`).
128
-
129
- === Writing your down method ===
130
-
131
- The `down` method of your migration should revert the transformations done by the `up` method. In other words the database should be unchanged if you do an `up` followed by a `down`. For example if you create a table in the up you should drop it in the `down` method. It is wise to do things in precisely the reverse order to in the `up` method. For example
132
-
133
- [source, ruby]
134
- ---------------------
135
- class ExampleMigration < ActiveRecord::Migration
136
-
137
- def self.up
138
- create_table :products do |t|
139
- t.references :category
140
- end
141
- #add a foreign key
142
- execute "ALTER TABLE products ADD CONSTRAINT fk_products_categories FOREIGN KEY (category_id) REFERENCES categories(id)"
143
-
144
- add_column :users, :home_page_url, :string
145
-
146
- rename_column :users, :email, :email_address
147
- end
148
-
149
- def self.down
150
- rename_column :users, :email_address, :email
151
- remove_column :users, :home_page_url
152
- execute "ALTER TABLE products DROP FOREIGN KEY fk_products_categories"
153
- drop_table :products
154
- end
155
- end
156
- ---------------------
157
- Sometimes your migration will do something which is just plain irreversible, for example it might destroy some data. In cases like those when you can't reverse the migration you can raise IrreversibleMigration from your `down` method. If someone tries to revert your migration an error message will be
158
- displayed saying that it can't be done.
159
-