lockaz_app/db/migrate/20191031163955_create_seuil_declencheurs.rb
Nicolas Bally f20fe482c6 initial
2020-04-06 10:38:07 +02:00

27 lines
610 B
Ruby

class CreateSeuilDeclencheurs < ActiveRecord::Migration[6.0]
def change
create_table :seuil_declencheurs do |t|
t.string :codedeclencheur
t.string :socmanaginn
t.string :valseuil
t.string :cadeau
t.string :media
t.string :parammedia
t.string :datemodif
t.string :expression
t.string :datedeb
t.string :datefin
t.string :envoiauto
t.string :copiemail
t.string :valmax
t.string :saisiecom
t.string :valba
t.string :uniteba
t.string :bonusactif
t.decimal :taux
t.timestamps
end
end
end