6 lines
142 B
Ruby
6 lines
142 B
Ruby
class AddAlignementToTitleContents < ActiveRecord::Migration[6.0]
|
|
def change
|
|
add_column :title_contents, :alignement, :string
|
|
end
|
|
end
|