mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 02:41:41 +00:00
7 lines
205 B
Ruby
7 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
|