Sha256: 8a66993a4209548361c3aa008fed08f5b2768b211cf103fb481f0afae31b15d6

Contents?: true

Size: 382 Bytes

Versions: 1

Compression:

Stored size: 382 Bytes

Contents

# frozen_string_literal: true

class CreateNitroAuthAuthorizationHistories < ActiveRecord::Migration[5.2]
  def change
    create_table :"#{Consent.table_name_prefix}histories" do |t|
      t.string :command, limit: 6
      t.string :subject, limit: 80
      t.string :action, limit: 80
      t.string :view, limit: 80
      t.integer :role_id

      t.timestamps
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
consent-2.0.0 db/migrate/20220420135558_create_nitro_auth_authorization_histories.rb