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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'db/migrate/20110913204141_create_projects.rb')
-rw-r--r--db/migrate/20110913204141_create_projects.rb11
1 files changed, 11 insertions, 0 deletions
diff --git a/db/migrate/20110913204141_create_projects.rb b/db/migrate/20110913204141_create_projects.rb
new file mode 100644
index 00000000000..45b76f95563
--- /dev/null
+++ b/db/migrate/20110913204141_create_projects.rb
@@ -0,0 +1,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