5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-05-17 02:30:51 +00:00
panel/db/migrate/20190730211756_add_title_to_sites.rb

9 lines
175 B
Ruby

# 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