Sha256: 367b5cd202871aaaa238432f1436426c2a906011d7fcb42889890e92309339e8
Contents?: true
Size: 418 Bytes
Versions: 72
Compression:
Stored size: 418 Bytes
Contents
class AdddMoreColumnWidths < ActiveRecord::Migration def change rename_column :content_columns, :width, :width_md add_column :content_columns, :width_xs, :integer, after: 'width_md' add_column :content_columns, :width_sm, :integer, after: 'width_xs' add_column :content_columns, :width_lg, :integer, after: 'width_md' add_column :content_columns, :width_xl, :integer, after: 'width_lg' end end
Version data entries
72 entries across 72 versions & 1 rubygems