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

20110913204141_create_projects.rb « migrate « db - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 45b76f955637fb1519dd54a981461869c692463d (plain)
1
2
3
4
5
6
7
8
9
10
11
class CreateProjects < ActiveRecord::Migration
  def change
    create_table :projects do |t|
      t.string :name
      t.string :path
      t.text :description

      t.timestamps
    end
  end
end