mirror of
https://github.com/Retrospring/retrospring.git
synced 2025-01-19 14:06:04 +01:00
5 lines
159 B
Ruby
5 lines
159 B
Ruby
class AddMotivationHeaderToUsers < ActiveRecord::Migration
|
|
def change
|
|
add_column :users, :motivation_header, :string, default: '', null: false
|
|
end
|
|
end
|