Seed properties
▶Changelog
Seed properties can be declared in .yml
files in:
- your
data/
directory (as defined by thedata-paths
config) - your
models/
directory (as defined by thesource-paths
config), for backwards compatibility
We recommend that you put them in the data/
directory. You can name these files whatever_you_want.yml
, and nest them arbitrarily deeply in subfolders within that directory.
data/<filename>.yml
version: 2seeds:- name: <string>show: true | false- <test>- ... # declare additional testscolumns:- name: <column name>- <test>- ... # declare additional tests- name: ... # declare properties of additional columns- name: ... # declare properties of additional seeds
▶Changelog