Sha256: e8b69917e12a2c32b03d4e225ea51bb998e05903fb3e02dc0f67524cb3f0b40f

Contents?: true

Size: 889 Bytes

Versions: 14

Compression:

Stored size: 889 Bytes

Contents

class CreateHandlerTexts < PeakFlowUtils::ApplicationMigration
  def change
    create_table :peak_flow_utils_handler_texts do |t|
      t.belongs_to :handler, null: false
      t.belongs_to :translation_key, index: false, null: false
      t.belongs_to :group, null: false
      t.string :key_show
      t.string :file_path
      t.integer :line_no
      t.string :full_path, index: true
      t.string :dir
      t.string :default
      t.timestamps
    end

    add_index :peak_flow_utils_handler_texts, :handler_id, name: "index_handler_translations_handler_id"

    add_foreign_key :peak_flow_utils_handler_texts, :peak_flow_utils_handlers, column: "handler_id"
    add_foreign_key :peak_flow_utils_handler_texts, :peak_flow_utils_translation_keys, column: "translation_key_id"
    add_foreign_key :peak_flow_utils_handler_texts, :peak_flow_utils_groups, column: "group_id"
  end
end

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
peak_flow_utils-0.1.19 lib/peak_flow_utils/migrations/20150908090800_create_handler_texts.rb
peak_flow_utils-0.1.18 lib/peak_flow_utils/migrations/20150908090800_create_handler_texts.rb
peak_flow_utils-0.1.17 lib/peak_flow_utils/migrations/20150908090800_create_handler_texts.rb
peak_flow_utils-0.1.16 lib/peak_flow_utils/migrations/20150908090800_create_handler_texts.rb
peak_flow_utils-0.1.15 lib/peak_flow_utils/migrations/20150908090800_create_handler_texts.rb
peak_flow_utils-0.1.14 lib/peak_flow_utils/migrations/20150908090800_create_handler_texts.rb
peak_flow_utils-0.1.13 lib/peak_flow_utils/migrations/20150908090800_create_handler_texts.rb
peak_flow_utils-0.1.12 lib/peak_flow_utils/migrations/20150908090800_create_handler_texts.rb
peak_flow_utils-0.1.11 lib/peak_flow_utils/migrations/20150908090800_create_handler_texts.rb
peak_flow_utils-0.1.10 lib/peak_flow_utils/migrations/20150908090800_create_handler_texts.rb
peak_flow_utils-0.1.9 lib/peak_flow_utils/migrations/20150908090800_create_handler_texts.rb
peak_flow_utils-0.1.8 app/migrations/20150908090800_create_handler_texts.rb
peak_flow_utils-0.1.7 app/migrations/20150908090800_create_handler_texts.rb
peak_flow_utils-0.1.6 app/migrations/20150908090800_create_handler_texts.rb