Sha256: 3abdddd776980ebc6c7f2c3805ae0d9c9b7b1184ce7789e51f4f46e7cfb5ab3b

Contents?: true

Size: 1.15 KB

Versions: 31

Compression:

Stored size: 1.15 KB

Contents

class CreateHubstatsRepos < ActiveRecord::Migration
  def change
    create_table :hubstats_repos do |t|
      t.belongs_to :owner
      t.string :name
      t.string :full_name
      t.datetime :pushed_at
      t.datetime :created_at
      t.datetime :updated_at

      t.string :homepage
      t.string :language
      t.integer :forks_count
      t.integer :stargazers_count
      t.integer :watches_count
      t.integer :size 
      t.integer :open_issues_count
      t.boolean :has_issues
      t.boolean :has_wiki
      t.boolean :has_downloads
      t.boolean :private
      t.boolean :fork
      t.string :description
      t.string :default_branch
      t.string :url
      t.string :html_url
      t.string :clone_url
      t.string :git_url
      t.string :ssh_url
      t.string :svn_url
      t.string :mirror_url
      t.string :hooks_url
      t.string :issue_events_url
      t.string :events_url
      t.string :contributors_url
      t.string :git_commits_url
      t.string :issue_comment_url
      t.string :merges_url
      t.string :issues_url
      t.string :pulls_url
      t.string :labels_url
    end

     add_index :hubstats_repos, :owner_id
  end
end

Version data entries

31 entries across 31 versions & 1 rubygems

Version Path
hubstats-1.2.1 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-1.2.0 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-1.1.0 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-1.0.0 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-1.0.0.beta3 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-1.0.0.beta2 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-1.0.0.beta1 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-1.0.0.beta db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-0.12.2 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-0.12.1 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-0.12.0 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-0.11.5 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-0.11.4 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-0.11.1 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-0.11.0 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-0.10.0 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-0.9.5 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-0.9.4 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-0.9.3 db/migrate/20140604130550_create_hubstats_repos.rb
hubstats-0.9.2 db/migrate/20140604130550_create_hubstats_repos.rb