6 lines
121 B
Ruby
Executable File
6 lines
121 B
Ruby
Executable File
class AddAccountantToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :accountant, :boolean
|
|
end
|
|
end
|