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