mirror of
https://github.com/scinote-eln/scinote-web.git
synced 2025-02-08 16:06:03 +08:00
7 lines
163 B
Ruby
7 lines
163 B
Ruby
|
# frozen_string_literal: true
|
||
|
class AddNameToMarvinJsAssets < ActiveRecord::Migration[5.1]
|
||
|
def change
|
||
|
add_column :marvin_js_assets, :name, :string
|
||
|
end
|
||
|
end
|