Sha256: ed7e99c85df7effbbdd39b1d730aa70f7cc4c13ec91676f0c1c2fe744d88cec8

Contents?: true

Size: 761 Bytes

Versions: 4

Compression:

Stored size: 761 Bytes

Contents

# frozen_string_literal: true

Sequel.migration do
  change do
    create_table :grants do
      primary_key :id
      column :agent_type,       String, size: 100, null: false
      column :agent_id,         String, size: 100, null: false
      column :agent_token,      String, size: 201, null: false
      column :credential_type,  String, size: 100, null: false
      column :credential_id,    String, size: 100, null: false
      column :credential_token, String, size: 201, null: false
      column :resource_type,    String, size: 100, null: false
      column :resource_id,      String, size: 100, null: false
      column :resource_token,   String, size: 201, null: false
      column :zone_id,          String, size: 100, null: false
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
checkpoint-1.1.3 db/migrations/1_create_grants.rb
checkpoint-1.1.2 db/migrations/1_create_grants.rb
checkpoint-1.1.1 db/migrations/1_create_grants.rb
checkpoint-1.1.0 db/migrations/1_create_grants.rb