Sha256: bb184fa505ffce00c75cf0fc8188890a7ff95e617655ef3e95fb9196b5ad2e63
Contents?: true
Size: 494 Bytes
Versions: 39
Compression:
Stored size: 494 Bytes
Contents
class AddContentRowMarginPaddingAndBgColor < ActiveRecord::Migration[5.0] def change add_column :content_rows, :background_color, :string, after: 'vertical_alignment' add_column :content_rows, :padding_top, :integer, after: 'background_color' add_column :content_rows, :padding_bottom, :integer, after: 'padding_top' add_column :content_rows, :margin_top, :integer, after: 'padding_bottom' add_column :content_rows, :margin_bottom, :integer, after: 'margin_top' end end
Version data entries
39 entries across 39 versions & 1 rubygems