mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-17 00:26:07 +10:00
* Improt projects inline so after seeds you have repos * Fix merge request seeds * Add comment seeds to both issues and merge requests * Remove some projects from seeds to increase speed Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
12 lines
252 B
Ruby
12 lines
252 B
Ruby
User.seed do |s|
|
|
s.id = 1
|
|
s.name = "Administrator"
|
|
s.email = "admin@example.com"
|
|
s.username = 'root'
|
|
s.password = "5iveL!fe"
|
|
s.password_confirmation = "5iveL!fe"
|
|
s.admin = true
|
|
s.projects_limit = 100
|
|
s.confirmed_at = DateTime.now
|
|
end
|