Sha256: 84b6afe08862c791b8a93af9b57aae54ade1d3d1f8eed56dc6b7938814b8d7e5

Contents?: true

Size: 295 Bytes

Versions: 3

Compression:

Stored size: 295 Bytes

Contents

class CreateAuthzControllerActions < ActiveRecord::Migration[5.2]
  def change
    create_table :authz_controller_actions do |t|
      t.string :controller
      t.string :action

      t.timestamps
    end
    add_index :authz_controller_actions, [:controller, :action], unique: true
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
authz-0.0.5 db/migrate/20181129024103_create_authz_controller_actions.rb
authz-0.0.4 db/migrate/20181129024103_create_authz_controller_actions.rb
authz-0.0.3 db/migrate/20181129024103_create_authz_controller_actions.rb