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

8 lines
164 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2019-04-29 01:11:41 +08:00
class AddNameToMarvinJsAssets < ActiveRecord::Migration[5.1]
def change
add_column :marvin_js_assets, :name, :string
end
end