sutty/db/migrate/20190730211756_add_title_to_sites.rb

9 lines
175 B
Ruby
Raw Permalink Normal View History

2019-07-31 20:55:34 +00:00
# frozen_string_literal: true
# Agrega el título al sitio
class AddTitleToSites < ActiveRecord::Migration[5.2]
def change
add_column :sites, :title, :string
end
end