This repository has been archived by the owner on Jul 19, 2021. It is now read-only.
Audio Feature
Pre-release
Pre-release
a-barbieri
released this
01 Mar 23:11
·
132 commits
to master
since this release
To upgrade from v0.1.6
create a new migration:
rails generate migration addAudioToAssets
Then update the file db/migrate/xxxxxx_add_audio_to_assets.rb
with the following line:
def change
add_column :binda_assets, :audio, :string
end
Once done just run migrations:
rails db:migrate