migration.rb 40.1 KB
Newer Older
1
require "active_support/core_ext/module/attribute_accessors"
2
require 'set'
3

4
module ActiveRecord
5 6 7 8 9 10 11
  class MigrationError < ActiveRecordError#:nodoc:
    def initialize(message = nil)
      message = "\n\n#{message}\n\n" if message
      super
    end
  end

12 13 14
  # Exception that can be raised to stop migrations from being rolled back.
  # For example the following migration is not reversible.
  # Rolling back this migration will raise an ActiveRecord::IrreversibleMigration error.
15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
  #
  #   class IrreversibleMigrationExample < ActiveRecord::Migration
  #     def change
  #       create_table :distributors do |t|
  #         t.string :zipcode
  #       end
  #
  #       execute <<-SQL
  #         ALTER TABLE distributors
  #           ADD CONSTRAINT zipchk
  #             CHECK (char_length(zipcode) = 5) NO INHERIT;
  #       SQL
  #     end
  #   end
  #
  # There are two ways to mitigate this problem.
  #
32
  # 1. Define <tt>#up</tt> and <tt>#down</tt> methods instead of <tt>#change</tt>:
33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
  #
  #  class ReversibleMigrationExample < ActiveRecord::Migration
  #    def up
  #      create_table :distributors do |t|
  #        t.string :zipcode
  #      end
  #
  #      execute <<-SQL
  #        ALTER TABLE distributors
  #          ADD CONSTRAINT zipchk
  #            CHECK (char_length(zipcode) = 5) NO INHERIT;
  #      SQL
  #    end
  #
  #    def down
  #      execute <<-SQL
  #        ALTER TABLE distributors
  #          DROP CONSTRAINT zipchk
  #      SQL
  #
  #      drop_table :distributors
  #    end
  #  end
  #
57
  # 2. Use the #reversible method in <tt>#change</tt> method:
58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
  #
  #   class ReversibleMigrationExample < ActiveRecord::Migration
  #     def change
  #       create_table :distributors do |t|
  #         t.string :zipcode
  #       end
  #
  #       reversible do |dir|
  #         dir.up do
  #           execute <<-SQL
  #             ALTER TABLE distributors
  #               ADD CONSTRAINT zipchk
  #                 CHECK (char_length(zipcode) = 5) NO INHERIT;
  #           SQL
  #         end
  #
  #         dir.down do
  #           execute <<-SQL
  #             ALTER TABLE distributors
  #               DROP CONSTRAINT zipchk
  #           SQL
  #         end
  #       end
  #     end
  #   end
83
  class IrreversibleMigration < MigrationError
84
  end
85

86
  class DuplicateMigrationVersionError < MigrationError#:nodoc:
87 88 89 90 91 92
    def initialize(version = nil)
      if version
        super("Multiple migrations have the version number #{version}.")
      else
        super("Duplicate migration version error.")
      end
93 94
    end
  end
95

96
  class DuplicateMigrationNameError < MigrationError#:nodoc:
97 98 99 100 101 102
    def initialize(name = nil)
      if name
        super("Multiple migrations have the name #{name}.")
      else
        super("Duplicate migration name.")
      end
103 104 105
    end
  end

106
  class UnknownMigrationVersionError < MigrationError #:nodoc:
107 108 109 110 111 112
    def initialize(version = nil)
      if version
        super("No migration with version number #{version}.")
      else
        super("Unknown migration version.")
      end
113 114 115
    end
  end

116
  class IllegalMigrationNameError < MigrationError#:nodoc:
117 118 119 120 121 122
    def initialize(name = nil)
      if name
        super("Illegal name for migration file: #{name}\n\t(only lower case letters, numbers, and '_' allowed).")
      else
        super("Illegal name for migration.")
      end
123 124 125
    end
  end

126
  class PendingMigrationError < MigrationError#:nodoc:
127 128 129 130 131
    def initialize(message = nil)
      if !message && defined?(Rails.env)
        super("Migrations are pending. To resolve this issue, run:\n\n\tbin/rake db:migrate RAILS_ENV=#{::Rails.env}.")
      elsif !message
        super("Migrations are pending. To resolve this issue, run:\n\n\tbin/rake db:migrate.")
132
      else
133
        super
134
      end
S
schneems 已提交
135 136 137
    end
  end

138 139 140 141 142 143 144 145
  class ConcurrentMigrationError < MigrationError #:nodoc:
    DEFAULT_MESSAGE = "Cannot run migrations because another migration process is currently running.".freeze

    def initialize(message = DEFAULT_MESSAGE)
      super
    end
  end

R
Rizwan Reza 已提交
146
  # = Active Record Migrations
147 148
  #
  # Migrations can manage the evolution of a schema used by several physical
R
Rizwan Reza 已提交
149 150
  # databases. It's a solution to the common problem of adding a field to make
  # a new feature work in your local database, but being unsure of how to
151
  # push that change to other developers and to the production server. With
R
Rizwan Reza 已提交
152
  # migrations, you can describe the transformations in self-contained classes
153
  # that can be checked into version control systems and executed against
R
Rizwan Reza 已提交
154
  # another database that might be one, two, or five versions behind.
155 156 157 158
  #
  # Example of a simple migration:
  #
  #   class AddSsl < ActiveRecord::Migration
159
  #     def up
160
  #       add_column :accounts, :ssl_enabled, :boolean, default: true
161
  #     end
162
  #
163
  #     def down
164 165 166 167
  #       remove_column :accounts, :ssl_enabled
  #     end
  #   end
  #
168 169
  # This migration will add a boolean flag to the accounts table and remove it
  # if you're backing out of the migration. It shows how all migrations have
170
  # two methods +up+ and +down+ that describes the transformations
R
Rizwan Reza 已提交
171
  # required to implement or remove the migration. These methods can consist
172
  # of both the migration specific methods like +add_column+ and +remove_column+,
173
  # but may also contain regular Ruby code for generating data needed for the
R
Rizwan Reza 已提交
174
  # transformations.
175 176 177 178
  #
  # Example of a more complex migration that also needs to initialize data:
  #
  #   class AddSystemSettings < ActiveRecord::Migration
179
  #     def up
180
  #       create_table :system_settings do |t|
181 182
  #         t.string  :name
  #         t.string  :label
V
Vijay Dev 已提交
183
  #         t.text    :value
184
  #         t.string  :type
V
Vijay Dev 已提交
185
  #         t.integer :position
186
  #       end
187
  #
188 189 190
  #       SystemSetting.create  name:  'notice',
  #                             label: 'Use notice?',
  #                             value: 1
191
  #     end
192
  #
193
  #     def down
194 195 196 197
  #       drop_table :system_settings
  #     end
  #   end
  #
198
  # This migration first adds the +system_settings+ table, then creates the very
R
Rizwan Reza 已提交
199
  # first row in it using the Active Record model that relies on the table. It
200
  # also uses the more advanced +create_table+ syntax where you can specify a
R
Rizwan Reza 已提交
201
  # complete table schema in one block call.
202 203 204
  #
  # == Available transformations
  #
205 206 207 208 209 210 211
  # === Creation
  #
  # * <tt>create_join_table(table_1, table_2, options)</tt>: Creates a join
  #   table having its name as the lexical order of the first two
  #   arguments. See
  #   ActiveRecord::ConnectionAdapters::SchemaStatements#create_join_table for
  #   details.
212
  # * <tt>create_table(name, options)</tt>: Creates a table called +name+ and
R
Rizwan Reza 已提交
213
  #   makes the table object available to a block that can then add columns to it,
214
  #   following the same format as +add_column+. See example above. The options hash
215
  #   is for fragments like "DEFAULT CHARSET=UTF-8" that are appended to the create
R
Rizwan Reza 已提交
216
  #   table definition.
217
  # * <tt>add_column(table_name, column_name, type, options)</tt>: Adds a new column
R
Rizwan Reza 已提交
218
  #   to the table called +table_name+
219
  #   named +column_name+ specified to be one of the following types:
220
  #   <tt>:string</tt>, <tt>:text</tt>, <tt>:integer</tt>, <tt>:float</tt>,
R
Rizwan Reza 已提交
221
  #   <tt>:decimal</tt>, <tt>:datetime</tt>, <tt>:timestamp</tt>, <tt>:time</tt>,
222
  #   <tt>:date</tt>, <tt>:binary</tt>, <tt>:boolean</tt>. A default value can be
223
  #   specified by passing an +options+ hash like <tt>{ default: 11 }</tt>.
224
  #   Other options include <tt>:limit</tt> and <tt>:null</tt> (e.g.
225
  #   <tt>{ limit: 50, null: false }</tt>) -- see
R
Rizwan Reza 已提交
226
  #   ActiveRecord::ConnectionAdapters::TableDefinition#column for details.
227 228 229
  # * <tt>add_foreign_key(from_table, to_table, options)</tt>: Adds a new
  #   foreign key. +from_table+ is the table with the key column, +to_table+ contains
  #   the referenced primary key.
230
  # * <tt>add_index(table_name, column_names, options)</tt>: Adds a new index
R
Rizwan Reza 已提交
231
  #   with the name of the column. Other options include
232
  #   <tt>:name</tt>, <tt>:unique</tt> (e.g.
233
  #   <tt>{ name: 'users_name_index', unique: true }</tt>) and <tt>:order</tt>
L
Lincoln Lee 已提交
234
  #   (e.g. <tt>{ order: { name: :desc } }</tt>).
235 236 237
  # * <tt>add_reference(:table_name, :reference_name)</tt>: Adds a new column
  #   +reference_name_id+ by default an integer. See
  #   ActiveRecord::ConnectionAdapters::SchemaStatements#add_reference for details.
238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271
  # * <tt>add_timestamps(table_name, options)</tt>: Adds timestamps (+created_at+
  #   and +updated_at+) columns to +table_name+.
  #
  # === Modification
  #
  # * <tt>change_column(table_name, column_name, type, options)</tt>:  Changes
  #   the column to a different type using the same parameters as add_column.
  # * <tt>change_column_default(table_name, column_name, default)</tt>: Sets a
  #   default value for +column_name+ definded by +default+ on +table_name+.
  # * <tt>change_column_null(table_name, column_name, null, default = nil)</tt>:
  #   Sets or removes a +NOT NULL+ constraint on +column_name+. The +null+ flag
  #   indicates whether the value can be +NULL+. See
  #   ActiveRecord::ConnectionAdapters::SchemaStatements#change_column_null for
  #   details.
  # * <tt>change_table(name, options)</tt>: Allows to make column alterations to
  #   the table called +name+. It makes the table object available to a block that
  #   can then add/remove columns, indexes or foreign keys to it.
  # * <tt>rename_column(table_name, column_name, new_column_name)</tt>: Renames
  #   a column but keeps the type and content.
  # * <tt>rename_index(table_name, old_name, new_name)</tt>: Renames an index.
  # * <tt>rename_table(old_name, new_name)</tt>: Renames the table called +old_name+
  #   to +new_name+.
  #
  # === Deletion
  #
  # * <tt>drop_table(name)</tt>: Drops the table called +name+.
  # * <tt>drop_join_table(table_1, table_2, options)</tt>: Drops the join table
  #   specified by the given arguments.
  # * <tt>remove_column(table_name, column_name, type, options)</tt>: Removes the column
  #   named +column_name+ from the table called +table_name+.
  # * <tt>remove_columns(table_name, *column_names)</tt>: Removes the given
  #   columns from the table definition.
  # * <tt>remove_foreign_key(from_table, options_or_to_table)</tt>: Removes the
  #   given foreign key from the table called +table_name+.
A
Aleksandar Diklic 已提交
272 273
  # * <tt>remove_index(table_name, column: column_names)</tt>: Removes the index
  #   specified by +column_names+.
274
  # * <tt>remove_index(table_name, name: index_name)</tt>: Removes the index
275
  #   specified by +index_name+.
276 277 278 279
  # * <tt>remove_reference(table_name, ref_name, options)</tt>: Removes the
  #   reference(s) on +table_name+ specified by +ref_name+.
  # * <tt>remove_timestamps(table_name, options)</tt>: Removes the timestamp
  #   columns (+created_at+ and +updated_at+) from the table definition.
280 281 282
  #
  # == Irreversible transformations
  #
283 284
  # Some transformations are destructive in a manner that cannot be reversed.
  # Migrations of that kind should raise an <tt>ActiveRecord::IrreversibleMigration</tt>
R
Rizwan Reza 已提交
285
  # exception in their +down+ method.
286
  #
287 288
  # == Running migrations from within Rails
  #
289 290
  # The Rails package has several tools to help create and apply migrations.
  #
291
  # To generate a new migration, you can use
292
  #   rails generate migration MyNewMigration
P
Pratik Naik 已提交
293
  #
294
  # where MyNewMigration is the name of your migration. The generator will
295 296
  # create an empty migration file <tt>timestamp_my_new_migration.rb</tt>
  # in the <tt>db/migrate/</tt> directory where <tt>timestamp</tt> is the
R
Rizwan Reza 已提交
297
  # UTC formatted date and time that the migration was generated.
P
Pratik Naik 已提交
298 299
  #
  # There is a special syntactic shortcut to generate migrations that add fields to a table.
R
Rizwan Reza 已提交
300
  #
301
  #   rails generate migration add_fieldname_to_tablename fieldname:string
P
Pratik Naik 已提交
302
  #
303
  # This will generate the file <tt>timestamp_add_fieldname_to_tablename.rb</tt>, which will look like this:
P
Pratik Naik 已提交
304
  #   class AddFieldnameToTablename < ActiveRecord::Migration
305
  #     def change
306
  #       add_column :tablenames, :fieldname, :string
P
Pratik Naik 已提交
307 308
  #     end
  #   end
309
  #
310
  # To run migrations against the currently configured database, use
311
  # <tt>rake db:migrate</tt>. This will update the database by running all of the
312
  # pending migrations, creating the <tt>schema_migrations</tt> table
313
  # (see "About the schema_migrations table" section below) if missing. It will also
P
Pratik Naik 已提交
314 315
  # invoke the db:schema:dump task, which will update your db/schema.rb file
  # to match the structure of your database.
316 317
  #
  # To roll the database back to a previous migration version, use
318
  # <tt>rake db:migrate VERSION=X</tt> where <tt>X</tt> is the version to which
319 320 321
  # you wish to downgrade. Alternatively, you can also use the STEP option if you
  # wish to rollback last few migrations. <tt>rake db:migrate STEP=2</tt> will rollback
  # the latest two migrations.
322 323
  #
  # If any of the migrations throw an <tt>ActiveRecord::IrreversibleMigration</tt> exception,
324
  # that step will fail and you'll have some manual work to do.
325
  #
326 327
  # == Database support
  #
328
  # Migrations are currently supported in MySQL, PostgreSQL, SQLite,
329
  # SQL Server, and Oracle (all supported databases except DB2).
330 331 332 333 334 335
  #
  # == More examples
  #
  # Not all migrations change the schema. Some just fix the data:
  #
  #   class RemoveEmptyTags < ActiveRecord::Migration
336
  #     def up
V
Vijay Dev 已提交
337
  #       Tag.all.each { |tag| tag.destroy if tag.pages.empty? }
338
  #     end
339
  #
340
  #     def down
341
  #       # not much we can do to restore deleted data
342
  #       raise ActiveRecord::IrreversibleMigration, "Can't recover the deleted tags"
343 344 345 346 347 348
  #     end
  #   end
  #
  # Others remove columns when they migrate up instead of down:
  #
  #   class RemoveUnnecessaryItemAttributes < ActiveRecord::Migration
349
  #     def up
350 351 352 353
  #       remove_column :items, :incomplete_items_count
  #       remove_column :items, :completed_items_count
  #     end
  #
354
  #     def down
355 356 357 358
  #       add_column :items, :incomplete_items_count
  #       add_column :items, :completed_items_count
  #     end
  #   end
359
  #
D
David Heinemeier Hansson 已提交
360
  # And sometimes you need to do something in SQL not abstracted directly by migrations:
361 362
  #
  #   class MakeJoinUnique < ActiveRecord::Migration
363
  #     def up
364 365 366
  #       execute "ALTER TABLE `pages_linked_pages` ADD UNIQUE `page_id_linked_page_id` (`page_id`,`linked_page_id`)"
  #     end
  #
367
  #     def down
368 369 370
  #       execute "ALTER TABLE `pages_linked_pages` DROP INDEX `page_id_linked_page_id`"
  #     end
  #   end
371
  #
372
  # == Using a model after changing its table
373
  #
374 375 376
  # Sometimes you'll want to add a column in a migration and populate it
  # immediately after. In that case, you'll need to make a call to
  # <tt>Base#reset_column_information</tt> in order to ensure that the model has the
R
Rizwan Reza 已提交
377
  # latest column data from after the new column was added. Example:
378
  #
379
  #   class AddPeopleSalary < ActiveRecord::Migration
A
Aaron Patterson 已提交
380
  #     def up
381
  #       add_column :people, :salary, :integer
382
  #       Person.reset_column_information
V
Vijay Dev 已提交
383
  #       Person.all.each do |p|
384
  #         p.update_attribute :salary, SalaryCalculator.compute(p)
385 386
  #       end
  #     end
387
  #   end
J
Jamis Buck 已提交
388 389 390 391 392 393 394 395 396
  #
  # == Controlling verbosity
  #
  # By default, migrations will describe the actions they are taking, writing
  # them to the console as they happen, along with benchmarks describing how
  # long each step took.
  #
  # You can quiet them down by setting ActiveRecord::Migration.verbose = false.
  #
P
Pratik Naik 已提交
397
  # You can also insert your own messages and benchmarks by using the +say_with_time+
J
Jamis Buck 已提交
398 399
  # method:
  #
A
Aaron Patterson 已提交
400
  #   def up
J
Jamis Buck 已提交
401 402
  #     ...
  #     say_with_time "Updating salaries..." do
V
Vijay Dev 已提交
403
  #       Person.all.each do |p|
404
  #         p.update_attribute :salary, SalaryCalculator.compute(p)
J
Jamis Buck 已提交
405 406 407 408 409 410 411
  #       end
  #     end
  #     ...
  #   end
  #
  # The phrase "Updating salaries..." would then be printed, along with the
  # benchmark for the block when the block completes.
412
  #
413 414 415 416 417 418 419 420 421 422 423 424
  # == Timestamped Migrations
  #
  # By default, Rails generates migrations that look like:
  #
  #    20080717013526_your_migration_name.rb
  #
  # The prefix is a generation timestamp (in UTC).
  #
  # If you'd prefer to use numeric prefixes, you can turn timestamped migrations
  # off by setting:
  #
  #    config.active_record.timestamped_migrations = false
425
  #
426
  # In application.rb.
427
  #
428 429 430
  # == Reversible Migrations
  #
  # Reversible migrations are migrations that know how to go +down+ for you.
431
  # You simply supply the +up+ logic, and the Migration system figures out
432 433 434 435 436 437 438
  # how to execute the down commands for you.
  #
  # To define a reversible migration, define the +change+ method in your
  # migration like this:
  #
  #   class TenderloveMigration < ActiveRecord::Migration
  #     def change
439
  #       create_table(:horses) do |t|
440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458
  #         t.column :content, :text
  #         t.column :remind_at, :datetime
  #       end
  #     end
  #   end
  #
  # This migration will create the horses table for you on the way up, and
  # automatically figure out how to drop the table on the way down.
  #
  # Some commands like +remove_column+ cannot be reversed.  If you care to
  # define how to move up and down in these cases, you should define the +up+
  # and +down+ methods as before.
  #
  # If a command cannot be reversed, an
  # <tt>ActiveRecord::IrreversibleMigration</tt> exception will be raised when
  # the migration is moving down.
  #
  # For a list of commands that are reversible, please see
  # <tt>ActiveRecord::Migration::CommandRecorder</tt>.
459 460 461 462 463 464 465 466 467
  #
  # == Transactional Migrations
  #
  # If the database adapter supports DDL transactions, all migrations will
  # automatically be wrapped in a transaction. There are queries that you
  # can't execute inside a transaction though, and for these situations
  # you can turn the automatic transactions off.
  #
  #   class ChangeEnum < ActiveRecord::Migration
468 469
  #     disable_ddl_transaction!
  #
470 471 472 473 474 475 476
  #     def up
  #       execute "ALTER TYPE model_size ADD VALUE 'new_value'"
  #     end
  #   end
  #
  # Remember that you can still open your own transactions, even if you
  # are in a Migration with <tt>self.disable_ddl_transaction!</tt>.
477
  class Migration
478
    autoload :CommandRecorder, 'active_record/migration/command_recorder'
479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504
    autoload :Compatibility, 'active_record/migration/compatibility'

    # This must be defined before the inherited hook, below
    class Current < Migration # :nodoc:
    end

    def self.inherited(subclass) # :nodoc:
      super
      if subclass.superclass == Migration
        subclass.include Compatibility::Legacy
      end
    end

    def self.[](version)
      version = version.to_s
      name = "V#{version.tr('.', '_')}"
      unless Compatibility.const_defined?(name)
        versions = Compatibility.constants.grep(/\AV[0-9_]+\z/).map { |s| s.to_s.delete('V').tr('_', '.').inspect }
        raise "Unknown migration version #{version.inspect}; expected one of #{versions.sort.join(', ')}"
      end
      Compatibility.const_get(name)
    end

    def self.current_version
      Rails.version.to_f
    end
505

506
    MigrationFilenameRegexp = /\A([0-9]+)_([_a-z0-9]*)\.?([_a-z0-9]*)?\.rb\z/ # :nodoc:
S
schneems 已提交
507 508 509 510

    # This class is used to verify that all migrations have been run before
    # loading a web page if config.active_record.migration_error is set to :page_load
    class CheckPending
511
      def initialize(app)
S
schneems 已提交
512
        @app = app
513
        @last_check = 0
S
schneems 已提交
514 515 516
      end

      def call(env)
517
        if connection.supports_migrations?
518 519
          mtime = ActiveRecord::Migrator.last_migration.mtime.to_i
          if @last_check < mtime
520
            ActiveRecord::Migration.check_pending!(connection)
521 522
            @last_check = mtime
          end
523
        end
524
        @app.call(env)
S
schneems 已提交
525
      end
526 527 528 529 530 531

      private

      def connection
        ActiveRecord::Base.connection
      end
S
schneems 已提交
532 533
    end

534
    class << self
535
      attr_accessor :delegate # :nodoc:
536
      attr_accessor :disable_ddl_transaction # :nodoc:
537

538
      # Raises <tt>ActiveRecord::PendingMigrationError</tt> error if any migrations are pending.
539 540
      def check_pending!(connection = Base.connection)
        raise ActiveRecord::PendingMigrationError if ActiveRecord::Migrator.needs_migration?(connection)
541
      end
S
schneems 已提交
542

543
      def load_schema_if_pending!
544
        if ActiveRecord::Migrator.needs_migration? || !ActiveRecord::Migrator.any_migrations?
L
Luke Hutscal 已提交
545
          # Roundtrip to Rake to allow plugins to hook into database initialization.
Y
Yves Senn 已提交
546 547 548 549 550 551 552
          FileUtils.cd Rails.root do
            current_config = Base.connection_config
            Base.clear_all_connections!
            system("bin/rake db:test:prepare")
            # Establish a new connection, the old database may be gone (db:test:prepare uses purge)
            Base.establish_connection(current_config)
          end
553 554 555 556 557 558 559 560 561 562
          check_pending!
        end
      end

      def maintain_test_schema! # :nodoc:
        if ActiveRecord::Base.maintain_test_schema
          suppress_messages { load_schema_if_pending! }
        end
      end

563 564 565
      def method_missing(name, *args, &block) # :nodoc:
        (delegate || superclass.delegate).send(name, *args, &block)
      end
566

567 568 569
      def migrate(direction)
        new.migrate direction
      end
570

571 572 573 574
      # Disable the transaction wrapping this migration.
      # You can still create your own transactions even after calling #disable_ddl_transaction!
      #
      # For more details read the {"Transactional Migrations" section above}[rdoc-ref:Migration].
575 576 577
      def disable_ddl_transaction!
        @disable_ddl_transaction = true
      end
578 579 580 581 582
    end

    def disable_ddl_transaction # :nodoc:
      self.class.disable_ddl_transaction
    end
583

584
    cattr_accessor :verbose
585
    attr_accessor :name, :version
586

587 588 589
    def initialize(name = self.class.name, version = nil)
      @name       = name
      @version    = version
590
      @connection = nil
591 592
    end

593
    self.verbose = true
594 595 596
    # instantiate the delegate object after initialize is defined
    self.delegate = new

597 598
    # Reverses the migration commands for the given block and
    # the given migrations.
599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617
    #
    # The following migration will remove the table 'horses'
    # and create the table 'apples' on the way up, and the reverse
    # on the way down.
    #
    #   class FixTLMigration < ActiveRecord::Migration
    #     def change
    #       revert do
    #         create_table(:horses) do |t|
    #           t.text :content
    #           t.datetime :remind_at
    #         end
    #       end
    #       create_table(:apples) do |t|
    #         t.string :variety
    #       end
    #     end
    #   end
    #
618 619 620
    # Or equivalently, if +TenderloveMigration+ is defined as in the
    # documentation for Migration:
    #
621
    #   require_relative '20121212123456_tenderlove_migration'
622 623 624 625 626 627 628 629 630 631
    #
    #   class FixupTLMigration < ActiveRecord::Migration
    #     def change
    #       revert TenderloveMigration
    #
    #       create_table(:apples) do |t|
    #         t.string :variety
    #       end
    #     end
    #   end
632
    #
633 634 635 636
    # This command can be nested.
    def revert(*migration_classes)
      run(*migration_classes.reverse, revert: true) unless migration_classes.empty?
      if block_given?
637 638
        if connection.respond_to? :revert
          connection.revert { yield }
639
        else
640
          recorder = CommandRecorder.new(connection)
641 642
          @connection = recorder
          suppress_messages do
643
            connection.revert { yield }
644 645 646 647 648 649
          end
          @connection = recorder.delegate
          recorder.commands.each do |cmd, args, block|
            send(cmd, *args, &block)
          end
        end
650
      end
651 652 653
    end

    def reverting?
654
      connection.respond_to?(:reverting) && connection.reverting
655 656
    end

657
    class ReversibleBlockHelper < Struct.new(:reverting) # :nodoc:
658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694
      def up
        yield unless reverting
      end

      def down
        yield if reverting
      end
    end

    # Used to specify an operation that can be run in one direction or another.
    # Call the methods +up+ and +down+ of the yielded object to run a block
    # only in one given direction.
    # The whole block will be called in the right order within the migration.
    #
    # In the following example, the looping on users will always be done
    # when the three columns 'first_name', 'last_name' and 'full_name' exist,
    # even when migrating down:
    #
    #    class SplitNameMigration < ActiveRecord::Migration
    #      def change
    #        add_column :users, :first_name, :string
    #        add_column :users, :last_name, :string
    #
    #        reversible do |dir|
    #          User.reset_column_information
    #          User.all.each do |u|
    #            dir.up   { u.first_name, u.last_name = u.full_name.split(' ') }
    #            dir.down { u.full_name = "#{u.first_name} #{u.last_name}" }
    #            u.save
    #          end
    #        end
    #
    #        revert { add_column :users, :full_name, :string }
    #      end
    #    end
    def reversible
      helper = ReversibleBlockHelper.new(reverting?)
M
Marc-Andre Lafortune 已提交
695
      execute_block{ yield helper }
696 697
    end

698 699 700 701 702 703 704 705 706 707 708 709 710
    # Runs the given migration classes.
    # Last argument can specify options:
    # - :direction (default is :up)
    # - :revert (default is false)
    def run(*migration_classes)
      opts = migration_classes.extract_options!
      dir = opts[:direction] || :up
      dir = (dir == :down ? :up : :down) if opts[:revert]
      if reverting?
        # If in revert and going :up, say, we want to execute :down without reverting, so
        revert { run(*migration_classes, direction: dir, revert: true) }
      else
        migration_classes.each do |migration_class|
711
          migration_class.new.exec_migration(connection, dir)
712 713 714 715
        end
      end
    end

716 717
    def up
      self.class.delegate = self
718
      return unless self.class.respond_to?(:up)
719 720 721 722 723
      self.class.up
    end

    def down
      self.class.delegate = self
724
      return unless self.class.respond_to?(:down)
725 726 727
      self.class.down
    end

728 729 730
    # Execute this migration in the named direction
    def migrate(direction)
      return unless respond_to?(direction)
J
Jamis Buck 已提交
731

732 733 734 735
      case direction
      when :up   then announce "migrating"
      when :down then announce "reverting"
      end
J
Jamis Buck 已提交
736

737 738
      time   = nil
      ActiveRecord::Base.connection_pool.with_connection do |conn|
739
        time = Benchmark.measure do
740
          exec_migration(conn, direction)
741
        end
742
      end
743

744 745 746
      case direction
      when :up   then announce "migrated (%.4fs)" % time.real; write
      when :down then announce "reverted (%.4fs)" % time.real; write
J
Jamis Buck 已提交
747
      end
748
    end
749 750 751 752 753 754 755 756 757 758 759 760 761 762 763

    def exec_migration(conn, direction)
      @connection = conn
      if respond_to?(:change)
        if direction == :down
          revert { change }
        else
          change
        end
      else
        send(direction)
      end
    ensure
      @connection = nil
    end
J
Jamis Buck 已提交
764

765 766 767
    def write(text="")
      puts(text) if verbose
    end
768

769 770 771 772 773
    def announce(message)
      text = "#{version} #{name}: #{message}"
      length = [0, 75 - text.length].max
      write "== %s %s" % [text, "=" * length]
    end
J
Jamis Buck 已提交
774

775 776 777
    def say(message, subitem=false)
      write "#{subitem ? "   ->" : "--"} #{message}"
    end
J
Jamis Buck 已提交
778

779 780 781 782 783 784 785 786
    def say_with_time(message)
      say(message)
      result = nil
      time = Benchmark.measure { result = yield }
      say "%.4fs" % time.real, :subitem
      say("#{result} rows", :subitem) if result.is_a?(Integer)
      result
    end
787

788 789 790 791 792 793
    def suppress_messages
      save, self.verbose = verbose, false
      yield
    ensure
      self.verbose = save
    end
794

795
    def connection
796
      @connection || ActiveRecord::Base.connection
797
    end
798

799
    def method_missing(method, *arguments, &block)
800
      arg_list = arguments.map(&:inspect) * ', '
801 802

      say_with_time "#{method}(#{arg_list})" do
803
        unless connection.respond_to? :revert
804
          unless arguments.empty? || [:execute, :enable_extension, :disable_extension].include?(method)
805
            arguments[0] = proper_table_name(arguments.first, table_name_options)
806 807
            if [:rename_table, :add_foreign_key].include?(method) ||
              (method == :remove_foreign_key && !arguments.second.is_a?(Hash))
Y
Yves Senn 已提交
808 809
              arguments[1] = proper_table_name(arguments.second, table_name_options)
            end
810
          end
811
        end
812 813
        return super unless connection.respond_to?(method)
        connection.send(method, *arguments, &block)
J
Jamis Buck 已提交
814
      end
815
    end
816

817 818
    def copy(destination, sources, options = {})
      copied = []
819

A
Arun Agrawal 已提交
820
      FileUtils.mkdir_p(destination) unless File.exist?(destination)
821

822 823
      destination_migrations = ActiveRecord::Migrator.migrations(destination)
      last = destination_migrations.last
824
      sources.each do |scope, path|
825
        source_migrations = ActiveRecord::Migrator.migrations(path)
826

827
        source_migrations.each do |migration|
828 829 830 831 832 833 834 835 836 837 838
          source = File.binread(migration.filename)
          inserted_comment = "# This migration comes from #{scope} (originally #{migration.version})\n"
          if /\A#.*\b(?:en)?coding:\s*\S+/ =~ source
            # If we have a magic comment in the original migration,
            # insert our comment after the first newline(end of the magic comment line)
            # so the magic keep working.
            # Note that magic comments must be at the first line(except sh-bang).
            source[/\n/] = "\n#{inserted_comment}"
          else
            source = "#{inserted_comment}#{source}"
          end
839

840
          if duplicate = destination_migrations.detect { |m| m.name == migration.name }
841 842
            if options[:on_skip] && duplicate.scope != scope.to_s
              options[:on_skip].call(scope, migration)
843
            end
844 845
            next
          end
846

847
          migration.version = next_migration_number(last ? last.version + 1 : 0).to_i
848
          new_path = File.join(destination, "#{migration.version}_#{migration.name.underscore}.#{scope}.rb")
849 850
          old_path, migration.filename = migration.filename, new_path
          last = migration
851

852
          File.binwrite(migration.filename, source)
853
          copied << migration
854
          options[:on_copy].call(scope, migration, old_path) if options[:on_copy]
855
          destination_migrations << migration
856 857 858
        end
      end

859 860 861
      copied
    end

862 863 864 865 866 867 868 869 870 871 872
    # Finds the correct table name given an Active Record object.
    # Uses the Active Record object's own table_name, or pre/suffix from the
    # options passed in.
    def proper_table_name(name, options = {})
      if name.respond_to? :table_name
        name.table_name
      else
        "#{options[:table_name_prefix]}#{name}#{options[:table_name_suffix]}"
      end
    end

V
Vijay Dev 已提交
873
    # Determines the version number of the next migration.
874 875 876 877
    def next_migration_number(number)
      if ActiveRecord::Base.timestamped_migrations
        [Time.now.utc.strftime("%Y%m%d%H%M%S"), "%.14d" % number].max
      else
878
        SchemaMigration.normalize_migration_number(number)
879
      end
880
    end
M
Marc-Andre Lafortune 已提交
881

882 883 884
    # Builds a hash for use in ActiveRecord::Migration#proper_table_name using
    # the Active Record object's table_name prefix and suffix
    def table_name_options(config = ActiveRecord::Base) #:nodoc:
885 886 887 888 889 890
      {
        table_name_prefix: config.table_name_prefix,
        table_name_suffix: config.table_name_suffix
      }
    end

M
Marc-Andre Lafortune 已提交
891 892 893 894 895 896 897 898
    private
    def execute_block
      if connection.respond_to? :execute_block
        super # use normal delegation to record the block
      else
        yield
      end
    end
899 900
  end

901 902
  # MigrationProxy is used to defer loading of the actual migration classes
  # until they are needed
903
  class MigrationProxy < Struct.new(:name, :version, :filename, :scope)
904

905
    def initialize(name, version, filename, scope)
906 907 908
      super
      @migration = nil
    end
909

910 911 912 913
    def basename
      File.basename(filename)
    end

914 915 916 917
    def mtime
      File.mtime filename
    end

918
    delegate :migrate, :announce, :write, :disable_ddl_transaction, to: :migration
919 920 921 922 923 924 925 926

    private

      def migration
        @migration ||= load_migration
      end

      def load_migration
927
        require(File.expand_path(filename))
928
        name.constantize.new(name, version)
929 930 931 932
      end

  end

A
Arun Agrawal 已提交
933 934
  class NullMigration < MigrationProxy #:nodoc:
    def initialize
935 936 937 938 939 940 941 942
      super(nil, 0, nil, nil)
    end

    def mtime
      0
    end
  end

943
  class Migrator#:nodoc:
944
    class << self
945 946
      attr_writer :migrations_paths
      alias :migrations_path= :migrations_paths=
947

948
      def migrate(migrations_paths, target_version = nil, &block)
949
        case
950 951 952 953 954 955 956 957
        when target_version.nil?
          up(migrations_paths, target_version, &block)
        when current_version == 0 && target_version == 0
          []
        when current_version > target_version
          down(migrations_paths, target_version, &block)
        else
          up(migrations_paths, target_version, &block)
958 959
        end
      end
960

961 962
      def rollback(migrations_paths, steps=1)
        move(:down, migrations_paths, steps)
963
      end
964

965 966
      def forward(migrations_paths, steps=1)
        move(:up, migrations_paths, steps)
967 968
      end

969 970 971 972
      def up(migrations_paths, target_version = nil)
        migrations = migrations(migrations_paths)
        migrations.select! { |m| yield m } if block_given?

973
        new(:up, migrations, target_version).migrate
974
      end
975

976
      def down(migrations_paths, target_version = nil)
977 978 979
        migrations = migrations(migrations_paths)
        migrations.select! { |m| yield m } if block_given?

980
        new(:down, migrations, target_version).migrate
981
      end
982

983
      def run(direction, migrations_paths, target_version)
984
        new(direction, migrations(migrations_paths), target_version).run
985 986 987
      end

      def open(migrations_paths)
988
        new(:up, migrations(migrations_paths), nil)
989
      end
990

991
      def schema_migrations_table_name
A
Aaron Patterson 已提交
992
        SchemaMigration.table_name
993 994
      end

995
      def get_all_versions(connection = Base.connection)
996 997 998 999 1000 1001
        ActiveSupport::Deprecation.silence do
          if connection.table_exists?(schema_migrations_table_name)
            SchemaMigration.all.map { |x| x.version.to_i }.sort
          else
            []
          end
1002
        end
1003 1004
      end

1005
      def current_version(connection = Base.connection)
1006
        get_all_versions(connection).max || 0
1007
      end
1008

1009
      def needs_migration?(connection = Base.connection)
1010
        (migrations(migrations_paths).collect(&:version) - get_all_versions(connection)).size > 0
1011 1012
      end

1013 1014 1015 1016
      def any_migrations?
        migrations(migrations_paths).any?
      end

A
Arun Agrawal 已提交
1017
      def last_migration #:nodoc:
1018
        migrations(migrations_paths).last || NullMigration.new
1019 1020
      end

1021 1022
      def migrations_paths
        @migrations_paths ||= ['db/migrate']
Y
yui-knk 已提交
1023
        # just to not break things if someone uses: migrations_path = some_string
1024
        Array(@migrations_paths)
1025 1026
      end

1027 1028 1029 1030 1031 1032 1033 1034
      def match_to_migration_filename?(filename) # :nodoc:
        File.basename(filename) =~ Migration::MigrationFilenameRegexp
      end

      def parse_migration_filename(filename) # :nodoc:
        File.basename(filename).scan(Migration::MigrationFilenameRegexp).first
      end

1035
      def migrations(paths)
1036
        paths = Array(paths)
1037

1038
        files = Dir[*paths.map { |p| "#{p}/**/[0-9]*_*.rb" }]
1039

A
Aaron Patterson 已提交
1040
        migrations = files.map do |file|
1041
          version, name, scope = parse_migration_filename(file)
1042 1043
          raise IllegalMigrationNameError.new(file) unless version
          version = version.to_i
A
Aaron Patterson 已提交
1044
          name = name.camelize
1045

1046
          MigrationProxy.new(name, version, file, scope)
1047 1048 1049 1050 1051
        end

        migrations.sort_by(&:version)
      end

1052 1053
      private

1054
      def move(direction, migrations_paths, steps)
1055
        migrator = new(direction, migrations(migrations_paths))
1056 1057 1058 1059 1060
        start_index = migrator.migrations.index(migrator.current_migration)

        if start_index
          finish = migrator.migrations[start_index + steps]
          version = finish ? finish.version : 0
1061
          send(direction, migrations_paths, version)
1062 1063
        end
      end
1064
    end
1065

1066
    def initialize(direction, migrations, target_version = nil)
1067
      raise StandardError.new("This database does not yet support migrations") unless Base.connection.supports_migrations?
1068

1069 1070 1071
      @direction         = direction
      @target_version    = target_version
      @migrated_versions = nil
1072
      @migrations        = migrations
1073

1074 1075
      validate(@migrations)

1076
      Base.connection.initialize_schema_migrations_table
1077 1078 1079
    end

    def current_version
1080
      migrated.max || 0
1081
    end
1082

1083 1084 1085
    def current_migration
      migrations.detect { |m| m.version == current_version }
    end
1086
    alias :current :current_migration
1087

1088
    def run
1089 1090 1091 1092
      if use_advisory_lock?
        with_advisory_lock { run_without_lock }
      else
        run_without_lock
1093
      end
1094
    end
1095

1096
    def migrate
1097 1098 1099 1100
      if use_advisory_lock?
        with_advisory_lock { migrate_without_lock }
      else
        migrate_without_lock
1101
      end
1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112
    end

    def runnable
      runnable = migrations[start..finish]
      if up?
        runnable.reject { |m| ran?(m) }
      else
        # skip the last migration if we're headed down, but not ALL the way down
        runnable.pop if target
        runnable.find_all { |m| ran?(m) }
      end
1113
    end
1114

1115
    def migrations
1116
      down? ? @migrations.reverse : @migrations.sort_by(&:version)
1117 1118
    end

1119
    def pending_migrations
1120
      already_migrated = migrated
1121
      migrations.reject { |m| already_migrated.include?(m.version) }
1122 1123 1124
    end

    def migrated
1125 1126 1127 1128 1129
      @migrated_versions || load_migrated
    end

    def load_migrated
      @migrated_versions = Set.new(self.class.get_all_versions)
1130 1131
    end

1132
    private
1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163

    def run_without_lock
      migration = migrations.detect { |m| m.version == @target_version }
      raise UnknownMigrationVersionError.new(@target_version) if migration.nil?
      unless (up? && migrated.include?(migration.version.to_i)) || (down? && !migrated.include?(migration.version.to_i))
        begin
          execute_migration_in_transaction(migration, @direction)
        rescue => e
          canceled_msg = use_transaction?(migration) ? ", this migration was canceled" : ""
          raise StandardError, "An error has occurred#{canceled_msg}:\n\n#{e}", e.backtrace
        end
      end
    end

    def migrate_without_lock
      if !target && @target_version && @target_version > 0
        raise UnknownMigrationVersionError.new(@target_version)
      end

      runnable.each do |migration|
        Base.logger.info "Migrating to #{migration.name} (#{migration.version})" if Base.logger

        begin
          execute_migration_in_transaction(migration, @direction)
        rescue => e
          canceled_msg = use_transaction?(migration) ? "this and " : ""
          raise StandardError, "An error has occurred, #{canceled_msg}all later migrations canceled:\n\n#{e}", e.backtrace
        end
      end
    end

1164 1165 1166 1167
    def ran?(migration)
      migrated.include?(migration.version.to_i)
    end

N
Neeraj Singh 已提交
1168 1169 1170 1171 1172 1173 1174
    def execute_migration_in_transaction(migration, direction)
      ddl_transaction(migration) do
        migration.migrate(direction)
        record_version_state_after_migrating(migration.version)
      end
    end

1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186
    def target
      migrations.detect { |m| m.version == @target_version }
    end

    def finish
      migrations.index(target) || migrations.size - 1
    end

    def start
      up? ? 0 : (migrations.index(current) || 0)
    end

1187 1188 1189
    def validate(migrations)
      name ,= migrations.group_by(&:name).find { |_,v| v.length > 1 }
      raise DuplicateMigrationNameError.new(name) if name
1190

1191 1192 1193 1194
      version ,= migrations.group_by(&:version).find { |_,v| v.length > 1 }
      raise DuplicateMigrationVersionError.new(version) if version
    end

1195
    def record_version_state_after_migrating(version)
1196
      if down?
1197 1198
        migrated.delete(version)
        ActiveRecord::SchemaMigration.where(:version => version.to_s).delete_all
1199
      else
1200 1201
        migrated << version
        ActiveRecord::SchemaMigration.create!(:version => version.to_s)
1202
      end
1203
    end
1204

1205 1206 1207 1208 1209 1210 1211 1212 1213
    def up?
      @direction == :up
    end

    def down?
      @direction == :down
    end

    # Wrap the migration in a transaction only if supported by the adapter.
1214 1215
    def ddl_transaction(migration)
      if use_transaction?(migration)
1216
        Base.transaction { yield }
1217
      else
1218
        yield
1219
      end
1220
    end
1221 1222 1223 1224

    def use_transaction?(migration)
      !migration.disable_ddl_transaction && Base.connection.supports_ddl_transactions?
    end
1225 1226 1227 1228 1229 1230

    def use_advisory_lock?
      Base.connection.supports_advisory_locks?
    end

    def with_advisory_lock
1231 1232
      lock_id = generate_migrator_advisory_lock_id
      got_lock = Base.connection.get_advisory_lock(lock_id)
1233 1234 1235 1236
      raise ConcurrentMigrationError unless got_lock
      load_migrated # reload schema_migrations to be sure it wasn't changed by another process before we got the lock
      yield
    ensure
1237
      Base.connection.release_advisory_lock(lock_id) if got_lock
1238 1239 1240
    end

    MIGRATOR_SALT = 2053462845
1241
    def generate_migrator_advisory_lock_id
1242 1243 1244
      db_name_hash = Zlib.crc32(Base.connection.current_database)
      MIGRATOR_SALT * db_name_hash
    end
1245
  end
1246
end