mirror of
https://github.com/astuto/astuto.git
synced 2025-12-15 03:07:52 +01:00
8 lines
174 B
Ruby
8 lines
174 B
Ruby
class AddSlugToOAuth < ActiveRecord::Migration[6.1]
|
|
def change
|
|
add_column :o_auths, :slug, :string
|
|
|
|
add_index :o_auths, [:slug, :tenant_id], unique: true
|
|
end
|
|
end
|