mirror of
https://github.com/astuto/astuto.git
synced 2025-12-16 11:47:56 +01:00
6 lines
114 B
Ruby
6 lines
114 B
Ruby
|
|
class AddRoleToUsers < ActiveRecord::Migration[6.0]
|
||
|
|
def change
|
||
|
|
add_column :users, :role, :integer
|
||
|
|
end
|
||
|
|
end
|