mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-07 20:43:36 +01:00
6 lines
135 B
Ruby
6 lines
135 B
Ruby
|
class AddSupporterToUsers < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :users, :supporter, :boolean, default: false
|
||
|
end
|
||
|
end
|