gitlabhq/db/migrate/20110921192501_create_issues.rb

14 lines
256 B
Ruby
Raw Normal View History

2011-10-08 23:36:38 +02:00
class CreateIssues < ActiveRecord::Migration
def change
create_table :issues do |t|
t.string :title
t.text :content
t.integer :assignee_id
t.integer :author_id
t.integer :project_id
t.timestamps
end
end
end