mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-14 23:21:42 +00:00
6 lines
205 B
Ruby
6 lines
205 B
Ruby
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
|