scinote-web/db/migrate/20190116101127_add_project_templates.rb
2019-01-28 15:37:24 +01:00

9 lines
199 B
Ruby

# frozen_string_literal: true
class AddProjectTemplates < ActiveRecord::Migration[5.1]
def change
add_column :projects, :template, :boolean
add_column :experiments, :uuid, :uuid
end
end