demarches-normaliennes/db/migrate/20210107143316_create_experts.rb
simon lehericey 29e9f2dd32 Ajout du model expert
Co-authored-by: Kara Diaby <kdiaby.pro@gmail.com>
2021-01-20 18:03:05 +01:00

7 lines
169 B
Ruby

class CreateExperts < ActiveRecord::Migration[6.0]
def change
create_table :experts do |t| # rubocop:disable Style/SymbolProc
t.timestamps
end
end
end