Sha256: 9d860199f9c8cc7acab0433b6855472897690eb050eb2a1f6b16d4f3166ebf54
Contents?: true
Size: 454 Bytes
Versions: 28
Compression:
Stored size: 454 Bytes
Contents
class CreateApicassoTables < ActiveRecord::Migration[5.0] def change create_table :apicasso_keys, id: :uuid do |t| t.json :scope t.integer :scope_type t.json :request_limiting t.text :token t.datetime :deleted_at t.timestamps null: false end create_table :apicasso_requests, id: :uuid do |t| t.text :api_key_id t.json :object t.timestamps null: false end end end
Version data entries
28 entries across 24 versions & 1 rubygems