0
0
Fork 0
mirror of https://github.com/discourse/discourse.git synced 2026-08-06 13:08:40 +08:00
discourse/db/migrate/20241112124552_create_user_api_key_client_scopes.rb

10 lines
296 B
Ruby
Vendored

# frozen_string_literal: true
class CreateUserApiKeyClientScopes < ActiveRecord::Migration[7.1]
def change
create_table :user_api_key_client_scopes do |t|
t.bigint :user_api_key_client_id, null: false
t.string :name, null: false, limit: 100
t.timestamps
end
end
end