migration.rb 40.3 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
  #   class IrreversibleMigrationExample < ActiveRecord::Migration[5.0]
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
  #     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
  #  class ReversibleMigrationExample < ActiveRecord::Migration[5.0]
35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
  #    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
  #   class ReversibleMigrationExample < ActiveRecord::Migration[5.0]
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
  #     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
    def initialize(message = nil)
      if !message && defined?(Rails.env)
129
        super("Migrations are pending. To resolve this issue, run:\n\n\tbin/rails db:migrate RAILS_ENV=#{::Rails.env}")
130
      elsif !message
131
        super("Migrations are pending. To resolve this issue, run:\n\n\tbin/rails 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
  #
  # Example of a simple migration:
  #
158
  #   class AddSsl < ActiveRecord::Migration[5.0]
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
  #
  # Example of a more complex migration that also needs to initialize data:
  #
178
  #   class AddSystemSettings < ActiveRecord::Migration[5.0]
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:
304
  #   class AddFieldnameToTablename < ActiveRecord::Migration[5.0]
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>rails 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>rails db:migrate VERSION=X</tt> where <tt>X</tt> is the version to which
319
  # you wish to downgrade. Alternatively, you can also use the STEP option if you
320
  # wish to rollback last few migrations. <tt>rails db:migrate STEP=2</tt> will rollback
321
  # 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
  #
  # == More examples
  #
  # Not all migrations change the schema. Some just fix the data:
  #
335
  #   class RemoveEmptyTags < ActiveRecord::Migration[5.0]
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
  #     end
  #   end
  #
  # Others remove columns when they migrate up instead of down:
  #
348
  #   class RemoveUnnecessaryItemAttributes < ActiveRecord::Migration[5.0]
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[5.0]
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[5.0]
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
  # how to execute the down commands for you.
  #
  # To define a reversible migration, define the +change+ method in your
  # migration like this:
  #
437
  #   class TenderloveMigration < ActiveRecord::Migration[5.0]
438
  #     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
  #
  # == 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.
  #
467
  #   class ChangeEnum < ActiveRecord::Migration[5.0]
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 539 540 541
      def nearest_delegate # :nodoc:
        delegate || superclass.nearest_delegate
      end

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

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

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

567
      def method_missing(name, *args, &block) # :nodoc:
568
        nearest_delegate.send(name, *args, &block)
569
      end
570

571 572 573
      def migrate(direction)
        new.migrate direction
      end
574

575 576 577 578
      # 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].
579 580 581
      def disable_ddl_transaction!
        @disable_ddl_transaction = true
      end
582 583 584 585 586
    end

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

588
    cattr_accessor :verbose
589
    attr_accessor :name, :version
590

591 592 593
    def initialize(name = self.class.name, version = nil)
      @name       = name
      @version    = version
594
      @connection = nil
595 596
    end

597
    self.verbose = true
598 599 600
    # instantiate the delegate object after initialize is defined
    self.delegate = new

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

    def reverting?
658
      connection.respond_to?(:reverting) && connection.reverting
659 660
    end

661
    class ReversibleBlockHelper < Struct.new(:reverting) # :nodoc:
662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679
      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:
    #
680
    #    class SplitNameMigration < ActiveRecord::Migration[5.0]
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698
    #      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 已提交
699
      execute_block{ yield helper }
700 701
    end

702 703 704 705 706 707 708 709 710 711 712 713 714
    # 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|
715
          migration_class.new.exec_migration(connection, dir)
716 717 718 719
        end
      end
    end

720 721
    def up
      self.class.delegate = self
722
      return unless self.class.respond_to?(:up)
723 724 725 726 727
      self.class.up
    end

    def down
      self.class.delegate = self
728
      return unless self.class.respond_to?(:down)
729 730 731
      self.class.down
    end

732 733 734
    # Execute this migration in the named direction
    def migrate(direction)
      return unless respond_to?(direction)
J
Jamis Buck 已提交
735

736 737 738 739
      case direction
      when :up   then announce "migrating"
      when :down then announce "reverting"
      end
J
Jamis Buck 已提交
740

741 742
      time   = nil
      ActiveRecord::Base.connection_pool.with_connection do |conn|
743
        time = Benchmark.measure do
744
          exec_migration(conn, direction)
745
        end
746
      end
747

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

    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 已提交
768

769 770 771
    def write(text="")
      puts(text) if verbose
    end
772

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

779 780 781
    def say(message, subitem=false)
      write "#{subitem ? "   ->" : "--"} #{message}"
    end
J
Jamis Buck 已提交
782

783 784 785 786 787 788 789 790
    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
791

792 793 794 795 796 797
    def suppress_messages
      save, self.verbose = verbose, false
      yield
    ensure
      self.verbose = save
    end
798

799
    def connection
800
      @connection || ActiveRecord::Base.connection
801
    end
802

803
    def method_missing(method, *arguments, &block)
804
      arg_list = arguments.map(&:inspect) * ', '
805 806

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

821 822
    def copy(destination, sources, options = {})
      copied = []
823

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

826 827
      destination_migrations = ActiveRecord::Migrator.migrations(destination)
      last = destination_migrations.last
828
      sources.each do |scope, path|
829
        source_migrations = ActiveRecord::Migrator.migrations(path)
830

831
        source_migrations.each do |migration|
832 833 834 835 836 837 838 839 840 841 842
          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
843

844
          if duplicate = destination_migrations.detect { |m| m.name == migration.name }
845 846
            if options[:on_skip] && duplicate.scope != scope.to_s
              options[:on_skip].call(scope, migration)
847
            end
848 849
            next
          end
850

851
          migration.version = next_migration_number(last ? last.version + 1 : 0).to_i
852
          new_path = File.join(destination, "#{migration.version}_#{migration.name.underscore}.#{scope}.rb")
853 854
          old_path, migration.filename = migration.filename, new_path
          last = migration
855

856
          File.binwrite(migration.filename, source)
857
          copied << migration
858
          options[:on_copy].call(scope, migration, old_path) if options[:on_copy]
859
          destination_migrations << migration
860 861 862
        end
      end

863 864 865
      copied
    end

866 867 868 869 870 871 872 873 874 875 876
    # 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 已提交
877
    # Determines the version number of the next migration.
878 879 880 881
    def next_migration_number(number)
      if ActiveRecord::Base.timestamped_migrations
        [Time.now.utc.strftime("%Y%m%d%H%M%S"), "%.14d" % number].max
      else
882
        SchemaMigration.normalize_migration_number(number)
883
      end
884
    end
M
Marc-Andre Lafortune 已提交
885

886 887 888
    # 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:
889 890 891 892 893 894
      {
        table_name_prefix: config.table_name_prefix,
        table_name_suffix: config.table_name_suffix
      }
    end

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

905 906
  # MigrationProxy is used to defer loading of the actual migration classes
  # until they are needed
907
  class MigrationProxy < Struct.new(:name, :version, :filename, :scope)
908

909
    def initialize(name, version, filename, scope)
910 911 912
      super
      @migration = nil
    end
913

914 915 916 917
    def basename
      File.basename(filename)
    end

918 919 920 921
    def mtime
      File.mtime filename
    end

922
    delegate :migrate, :announce, :write, :disable_ddl_transaction, to: :migration
923 924 925 926 927 928 929 930

    private

      def migration
        @migration ||= load_migration
      end

      def load_migration
931
        require(File.expand_path(filename))
932
        name.constantize.new(name, version)
933 934 935 936
      end

  end

A
Arun Agrawal 已提交
937 938
  class NullMigration < MigrationProxy #:nodoc:
    def initialize
939 940 941 942 943 944 945 946
      super(nil, 0, nil, nil)
    end

    def mtime
      0
    end
  end

947
  class Migrator#:nodoc:
948
    class << self
949 950
      attr_writer :migrations_paths
      alias :migrations_path= :migrations_paths=
951

952
      def migrate(migrations_paths, target_version = nil, &block)
953
        case
954 955 956 957 958 959 960 961
        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)
962 963
        end
      end
964

965 966
      def rollback(migrations_paths, steps=1)
        move(:down, migrations_paths, steps)
967
      end
968

969 970
      def forward(migrations_paths, steps=1)
        move(:up, migrations_paths, steps)
971 972
      end

973 974 975 976
      def up(migrations_paths, target_version = nil)
        migrations = migrations(migrations_paths)
        migrations.select! { |m| yield m } if block_given?

977
        new(:up, migrations, target_version).migrate
978
      end
979

980
      def down(migrations_paths, target_version = nil)
981 982 983
        migrations = migrations(migrations_paths)
        migrations.select! { |m| yield m } if block_given?

984
        new(:down, migrations, target_version).migrate
985
      end
986

987
      def run(direction, migrations_paths, target_version)
988
        new(direction, migrations(migrations_paths), target_version).run
989 990 991
      end

      def open(migrations_paths)
992
        new(:up, migrations(migrations_paths), nil)
993
      end
994

995
      def schema_migrations_table_name
A
Aaron Patterson 已提交
996
        SchemaMigration.table_name
997 998
      end

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

1009
      def current_version(connection = Base.connection)
1010
        get_all_versions(connection).max || 0
1011
      end
1012

1013
      def needs_migration?(connection = Base.connection)
1014
        (migrations(migrations_paths).collect(&:version) - get_all_versions(connection)).size > 0
1015 1016
      end

1017 1018 1019 1020
      def any_migrations?
        migrations(migrations_paths).any?
      end

A
Arun Agrawal 已提交
1021
      def last_migration #:nodoc:
1022
        migrations(migrations_paths).last || NullMigration.new
1023 1024
      end

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

1031 1032 1033 1034 1035 1036 1037 1038
      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

1039
      def migrations(paths)
1040
        paths = Array(paths)
1041

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

A
Aaron Patterson 已提交
1044
        migrations = files.map do |file|
1045
          version, name, scope = parse_migration_filename(file)
1046 1047
          raise IllegalMigrationNameError.new(file) unless version
          version = version.to_i
A
Aaron Patterson 已提交
1048
          name = name.camelize
1049

1050
          MigrationProxy.new(name, version, file, scope)
1051 1052 1053 1054 1055
        end

        migrations.sort_by(&:version)
      end

1056 1057
      private

1058
      def move(direction, migrations_paths, steps)
1059
        migrator = new(direction, migrations(migrations_paths))
1060 1061 1062 1063 1064
        start_index = migrator.migrations.index(migrator.current_migration)

        if start_index
          finish = migrator.migrations[start_index + steps]
          version = finish ? finish.version : 0
1065
          send(direction, migrations_paths, version)
1066 1067
        end
      end
1068
    end
1069

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

1073 1074 1075
      @direction         = direction
      @target_version    = target_version
      @migrated_versions = nil
1076
      @migrations        = migrations
1077

1078 1079
      validate(@migrations)

1080
      Base.connection.initialize_schema_migrations_table
1081 1082 1083
    end

    def current_version
1084
      migrated.max || 0
1085
    end
1086

1087 1088 1089
    def current_migration
      migrations.detect { |m| m.version == current_version }
    end
1090
    alias :current :current_migration
1091

1092
    def run
1093 1094 1095 1096
      if use_advisory_lock?
        with_advisory_lock { run_without_lock }
      else
        run_without_lock
1097
      end
1098
    end
1099

1100
    def migrate
1101 1102 1103 1104
      if use_advisory_lock?
        with_advisory_lock { migrate_without_lock }
      else
        migrate_without_lock
1105
      end
1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116
    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
1117
    end
1118

1119
    def migrations
1120
      down? ? @migrations.reverse : @migrations.sort_by(&:version)
1121 1122
    end

1123
    def pending_migrations
1124
      already_migrated = migrated
1125
      migrations.reject { |m| already_migrated.include?(m.version) }
1126 1127 1128
    end

    def migrated
1129 1130 1131 1132 1133
      @migrated_versions || load_migrated
    end

    def load_migrated
      @migrated_versions = Set.new(self.class.get_all_versions)
1134 1135
    end

1136
    private
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 1164 1165 1166 1167

    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

1168 1169 1170 1171
    def ran?(migration)
      migrated.include?(migration.version.to_i)
    end

N
Neeraj Singh 已提交
1172 1173 1174 1175 1176 1177 1178
    def execute_migration_in_transaction(migration, direction)
      ddl_transaction(migration) do
        migration.migrate(direction)
        record_version_state_after_migrating(migration.version)
      end
    end

1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190
    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

1191 1192 1193
    def validate(migrations)
      name ,= migrations.group_by(&:name).find { |_,v| v.length > 1 }
      raise DuplicateMigrationNameError.new(name) if name
1194

1195 1196 1197 1198
      version ,= migrations.group_by(&:version).find { |_,v| v.length > 1 }
      raise DuplicateMigrationVersionError.new(version) if version
    end

1199
    def record_version_state_after_migrating(version)
1200
      if down?
1201 1202
        migrated.delete(version)
        ActiveRecord::SchemaMigration.where(:version => version.to_s).delete_all
1203
      else
1204 1205
        migrated << version
        ActiveRecord::SchemaMigration.create!(:version => version.to_s)
1206
      end
1207
    end
1208

1209 1210 1211 1212 1213 1214 1215 1216 1217
    def up?
      @direction == :up
    end

    def down?
      @direction == :down
    end

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

    def use_transaction?(migration)
      !migration.disable_ddl_transaction && Base.connection.supports_ddl_transactions?
    end
1229 1230 1231 1232 1233 1234

    def use_advisory_lock?
      Base.connection.supports_advisory_locks?
    end

    def with_advisory_lock
1235 1236
      lock_id = generate_migrator_advisory_lock_id
      got_lock = Base.connection.get_advisory_lock(lock_id)
1237 1238 1239 1240
      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
1241
      Base.connection.release_advisory_lock(lock_id) if got_lock
1242 1243 1244
    end

    MIGRATOR_SALT = 2053462845
1245
    def generate_migrator_advisory_lock_id
1246 1247 1248
      db_name_hash = Zlib.crc32(Base.connection.current_database)
      MIGRATOR_SALT * db_name_hash
    end
1249
  end
1250
end