mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-08 12:43:37 +01:00
6 lines
132 B
Ruby
6 lines
132 B
Ruby
|
class AddBloggerToUsers < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :users, :blogger, :boolean, default: :false
|
||
|
end
|
||
|
end
|