mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-02-07 19:13:35 +01:00
6 lines
149 B
Ruby
6 lines
149 B
Ruby
|
class AddSmiledCountToUsers < ActiveRecord::Migration
|
||
|
def change
|
||
|
add_column :users, :smiled_count, :integer, default: 0, null: false
|
||
|
end
|
||
|
end
|