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/20190626132657_create_s_organisations.rb
2021-08-23 10:26:02 +02:00

25 lines
534 B
Ruby

class CreateSOrganisations < ActiveRecord::Migration[6.0]
def change
create_table :s_organisations do |t|
t.string :name
t.string :address1
t.string :address2
t.string :address3
t.string :tel
t.string :fax
t.string :email
t.string :website
t.string :siret
t.string :siren
t.string :rcs
t.string :ape
t.string :capital
t.string :forme
t.text :description
t.timestamps
end
SOrganisation.create :name => "Jipé SAS"
end
end