Add dotenv - Protect my secret data in .env file

This commit is contained in:
Benjamin Myara
2018-08-29 14:53:39 +01:00
parent dfb53b89b0
commit 6dee298b44
18 changed files with 240 additions and 2 deletions

View File

@@ -0,0 +1,7 @@
class AddFirstNameToUsers < ActiveRecord::Migration[5.2]
def change
add_column :users, :first_name, :string
add_column :users, :last_name, :string
add_column :users, :photo, :string
end
end