scinote-web/db/migrate/20190116101127_add_project_templates.rb

9 lines
199 B
Ruby
Raw Normal View History

2019-01-28 22:37:24 +08:00
# frozen_string_literal: true
class AddProjectTemplates < ActiveRecord::Migration[5.1]
def change
add_column :projects, :template, :boolean
add_column :experiments, :uuid, :uuid
end
end