Sha256: 4f55f3ad3ce9a5b2c4b77d19eb8bab3ece3177641612fcf7f08f0f495becd9a2

Contents?: true

Size: 571 Bytes

Versions: 3

Compression:

Stored size: 571 Bytes

Contents

class CreatePhcdevworksScriptsSnippetPostVersions < ActiveRecord::Migration[7.0]
  TEXT_BYTES = 1_073_741_823
  def change
    create_table :phcdevworks_scripts_snippet_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_scripts_snippet_post_versions, %i(item_type item_id), :name => 'snippet_post_versions'

  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
phcdevworks_scripts-9.0.2 db/migrate/20191102092711_create_phcdevworks_scripts_snippet_post_versions.rb
phcdevworks_scripts-9.0.1 db/migrate/20191102092711_create_phcdevworks_scripts_snippet_post_versions.rb
phcdevworks_scripts-9.0.0 db/migrate/20191102092711_create_phcdevworks_scripts_snippet_post_versions.rb