We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
If I've configured my seed's column names in a yml file, I don't want to also keep a header row up-to-date in my csv seed file.
seeds: - name: my_seed columns: - name: country_code data_type: varchar(2) - name: country_name data_type: varchar(32)
country_code,country_name US,United States CA,Canada GB,United Kingdom
Instead, I should be able to configure my seed to not need a header row if I've configured my column names in yml already.
seeds: - name: my_seed config: header: false columns: - name: country_code data_type: varchar(2) - name: country_name data_type: varchar(32)
US,United States CA,Canada GB,United Kingdom
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Describe the feature
If I've configured my seed's column names in a yml file, I don't want to also keep a header row up-to-date in my csv seed file.
Instead, I should be able to configure my seed to not need a header row if I've configured my column names in yml already.
The text was updated successfully, but these errors were encountered: