mirror of
https://github.com/discourse/discourse.git
synced 2025-02-06 11:28:18 +00:00
11 lines
296 B
Ruby
11 lines
296 B
Ruby
# 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
|