Welcome to mirror list, hosted at ThFree Co, Russian Federation.

20110915213352_create_keys.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: d4615b4babf32501217acde33632cde9633cfd44 (plain)
1
2
3
4
5
6
7
8
9
class CreateKeys < ActiveRecord::Migration
  def change
    create_table :keys do |t|
      t.integer :user_id, :null => false
      t.text :project_id, :null => false
      t.timestamps
    end
  end
end