Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
discourse-annotator / db / migrate / 20221105160727_add_projects.rb
Size: Mime:
class AddProjects < ActiveRecord::Migration[6.1]
  def change

    create_table :discourse_annotator_projects, if_not_exists: true do |t|
      t.string :name, null: false
      t.timestamps
    end

    add_column :discourse_annotator_codes, :project_id, :integer


  end
end