This repository has been archived on 2021-11-24. You can view files and clone it, but cannot push or open issues or pull requests.
phone_app/db/migrate/00420_create_mail_profiles.rb
2021-08-23 10:26:02 +02:00

23 lines
557 B
Ruby

class CreateMailProfiles < ActiveRecord::Migration[6.0]
def change
create_table :mail_profiles do |t|
t.string :civilite
t.string :firstname
t.string :name
t.string :address
t.string :address2
t.string :cp
t.string :city
t.string :country
t.string :email
t.string :phone
t.string :token
t.string :provider
t.string :uid
t.string :facebook_token
t.timestamps
end
end
end