payre3p_app/db/migrate/20160627114912_create_mail_profiles.rb
2018-08-02 23:49:05 +02:00

23 lines
486 B
Ruby

class CreateMailProfiles < ActiveRecord::Migration
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 null: false
end
end
end