5
0
Fork 0
mirror of https://0xacab.org/sutty/sutty synced 2024-06-13 14:24:16 +00:00
panel/db/migrate/20201111203031_add_tienda_to_site.rb

7 lines
205 B
Ruby
Raw Normal View History

2020-11-11 21:15:58 +00:00
class AddTiendaToSite < ActiveRecord::Migration[6.0]
def change
add_column :sites, :tienda_api_key_ciphertext, :string, default: ''
add_column :sites, :tienda_url, :string, default: ''
end
end