Guest User

Untitled

a guest
Jul 17th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. create_table :layouts do |t|
  2. t.references :company
  3. t.string :titles_font
  4. t.string :background_image_url
  5.  
  6. t.string :custom_background_image_file_name
  7. t.string :custom_background_image_content_type
  8. t.integer :custom_background_image_file_size
  9. t.datetime :custom_background_image_updated_at
  10. t.boolean :use_custom_background, :default => false
  11. t.boolean :tiled_background, :default => false
  12.  
  13. t.string :footer_color
  14. t.string :footer_text_color
  15.  
  16. t.string :menu_background_color
  17. t.string :menu_text_color
  18. t.string :menu_separator_color
  19. t.string :menu_selected_color
  20.  
  21. t.timestamps
  22. end
Add Comment
Please, Sign In to add comment