gitlabhq/db/migrate/20110913204141_create_proje...

12 lines
200 B
Ruby

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