Sha256: e8dc0711de03b3c085224cc5f17fdcc3fbed963cd6d5831adb298eee603b549d

Contents?: true

Size: 559 Bytes

Versions: 13

Compression:

Stored size: 559 Bytes

Contents

class CreatePhcdevworksTutorialsCommandPostVersions < ActiveRecord::Migration[6.0]
  TEXT_BYTES = 1_073_741_823
  def change
    create_table :phcdevworks_tutorials_command_post_versions do |t|

      t.string   :item_type, {:null=>false}
      t.integer  :item_id,   null: false
      t.string   :event,     null: false
      t.string   :whodunnit
      t.text     :object, limit: TEXT_BYTES
      t.datetime :created_at

    end

    add_index :phcdevworks_tutorials_command_post_versions, %i(item_type item_id), :name => 'command_post_versions'

  end
end

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
phcdevworks_tutorials-12.1.1 db/migrate/20200321122606_create_phcdevworks_tutorials_command_post_versions.rb
phcdevworks_tutorials-12.1.0 db/migrate/20200321122606_create_phcdevworks_tutorials_command_post_versions.rb
phcdevworks_tutorials-12.0.5 db/migrate/20200321122606_create_phcdevworks_tutorials_command_post_versions.rb
phcdevworks_tutorials-12.0.4 db/migrate/20200321122606_create_phcdevworks_tutorials_command_post_versions.rb
phcdevworks_tutorials-12.0.3 db/migrate/20200321122606_create_phcdevworks_tutorials_command_post_versions.rb
phcdevworks_tutorials-12.0.2 db/migrate/20200321122606_create_phcdevworks_tutorials_command_post_versions.rb
phcdevworks_tutorials-12.0.1 db/migrate/20200321122606_create_phcdevworks_tutorials_command_post_versions.rb
phcdevworks_tutorials-12.0.0 db/migrate/20200321122606_create_phcdevworks_tutorials_command_post_versions.rb
phcdevworks_tutorials-11.3.0 db/migrate/20200321122606_create_phcdevworks_tutorials_command_post_versions.rb
phcdevworks_tutorials-11.2.0 db/migrate/20200321122606_create_phcdevworks_tutorials_command_post_versions.rb
phcdevworks_tutorials-11.1.0 db/migrate/20200321122606_create_phcdevworks_tutorials_command_post_versions.rb
phcdevworks_tutorials-11.0.2 db/migrate/20200321122606_create_phcdevworks_tutorials_command_post_versions.rb
phcdevworks_tutorials-11.0.1 db/migrate/20200321122606_create_phcdevworks_tutorials_command_post_versions.rb