This allows users to give each card profile a name. These names do not have to be unique and the ids are still used for internal identification. The only purpose of this is to make it easier to distinguish between profiles.
Migration
alter table card_data add column name text;
update card_data set name = '*Unbenannt*';
Checklist
Description
This allows users to give each card profile a name. These names do not have to be unique and the ids are still used for internal identification. The only purpose of this is to make it easier to distinguish between profiles.
Migration