scinote-web/db/migrate/20190427115413_add_name_to_marvin_js_assets.rb

7 lines
163 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class AddNameToMarvinJsAssets < ActiveRecord::Migration[5.1]
def change
add_column :marvin_js_assets, :name, :string
end
end