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