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