mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 07:06:03 +01:00
5 lines
154 B
Ruby
5 lines
154 B
Ruby
class AddSmiledCountToUsers < ActiveRecord::Migration[4.2]
|
|
def change
|
|
add_column :users, :smiled_count, :integer, default: 0, null: false
|
|
end
|
|
end
|