blob: 638d89466ed7445c039c32e227d9057fa8972fad (
plain)
1
2
3
4
5
6
7
|
class AddCreditFieldsToAssets < ActiveRecord::Migration[8.1]
def change
add_column :assets, :license_key, :string
add_column :assets, :creator, :string
add_column :assets, :source_url, :string
end
end
|