mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 13:56:06 +01:00
5 lines
140 B
Ruby
5 lines
140 B
Ruby
class AddContributorToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :contributor, :boolean, default: :false
|
|
end
|
|
end
|