summaryrefslogtreecommitdiff
path: root/db/fixtures/development/01_admin.rb
blob: 42d1843534039f6ff13c7b914745e3eddb1e3b06 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
User.seed(:id, [
  {
    id: 1,
    name: "Administrator",
    email: "admin@local.host",
    username: 'root',
    password: "5iveL!fe",
    password_confirmation: "5iveL!fe",
    admin: true,
    projects_limit: 100,
    theme_id: Gitlab::Theme::MARS,
    confirmed_at: DateTime.now
  }
])