You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

10 lines
321 B

9 years ago
  1. # Obeesdoo
  2. Specific module for the Beescoop
  3. # Migrate barcode
  4. ```sql
  5. insert into member_card (active, barcode, partner_id, responsible_id, activation_date) select 't', barcode, id, 1, '2016-01-01' from res_partner where barcode is not null;
  6. update res_partner set eater = 'worker_eater' where barcode is not null;
  7. ```