mirror of
https://github.com/projekteuler/projekteuler.git
synced 2025-12-10 00:36:42 +01:00
6 lines
113 B
Ruby
6 lines
113 B
Ruby
class AddNameToUsers < ActiveRecord::Migration[5.2]
|
|
def change
|
|
add_column :users, :name, :string
|
|
end
|
|
end
|