Sha256: 7e98109f4a9c6848c6ad709589adbdbe26f457a666f820991e6cb751932c335d

Contents?: true

Size: 322 Bytes

Versions: 5

Compression:

Stored size: 322 Bytes

Contents

class CreateProjects < ActiveRecord::Migration[5.0]
  def change
    create_table :projects do |t|
      t.string :name
      t.string :repo_provider
      t.string :repo_owner
      t.string :repo_name
      t.string :repo_id
      t.json :enabled_pipelines
      t.boolean :enabled

      t.timestamps
    end
  end
end

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
jobs-api-0.2.1 db/migrate/20161107155702_create_projects.rb
jobs-api-0.2.0 db/migrate/20161107155702_create_projects.rb
jobs-api-0.1.2 db/migrate/20161107155702_create_projects.rb
jobs-api-0.1.1 db/migrate/20161107155702_create_projects.rb
jobs-api-0.1.0 db/migrate/20161107155702_create_projects.rb