mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 19:57: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
|