mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-23 00:06:21 +00:00
6 lines
113 B
Ruby
6 lines
113 B
Ruby
|
class AddTokenToRoles < ActiveRecord::Migration[6.1]
|
||
|
def change
|
||
|
add_column :roles, :token, :text
|
||
|
end
|
||
|
end
|