diff options
author | Igor Kapkov <igasgeek@me.com> | 2015-04-19 17:25:09 +0800 |
---|---|---|
committer | Igor Kapkov <igasgeek@me.com> | 2015-06-12 12:07:55 +0800 |
commit | 09bef7684a5ddd0e37d8bed38858a9fa866e1df2 (patch) | |
tree | 18b12f609b8b4a3b1e79032c10fb38a7607c7718 /activerecord/test/fixtures | |
parent | fcbd2e821e12fdf66ad2f28e97992a7cd75f529e (diff) | |
download | rails-09bef7684a5ddd0e37d8bed38858a9fa866e1df2.tar.gz rails-09bef7684a5ddd0e37d8bed38858a9fa866e1df2.tar.bz2 rails-09bef7684a5ddd0e37d8bed38858a9fa866e1df2.zip |
Add enum prefix/suffix option to enum definition
Fixes #17511 and #17415
Diffstat (limited to 'activerecord/test/fixtures')
-rw-r--r-- | activerecord/test/fixtures/books.yml | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/activerecord/test/fixtures/books.yml b/activerecord/test/fixtures/books.yml index 380dd3dfca..93cfabd61c 100644 --- a/activerecord/test/fixtures/books.yml +++ b/activerecord/test/fixtures/books.yml @@ -5,6 +5,10 @@ awdr: format: "paperback" status: :published read_status: :read + language: :english + author_visibility: :visible + illustrator_visibility: :visible + font_size: :medium rfr: author_id: 1 |