Forum d'entraide
#entraide Questions/réponses
Installation : Schéma BD decidim
Bonjour,
J ai suivi la documentation : https://github.com/Platoniq/decidim-install/blob/master/decidim-bionic.md
Je suis arrivé à l'étape : b
in/rails db:create RAILS_ENV=production
bin/rails assets:precompile db:migrate RAILS_ENV=production
in/rails db:create RAILS_ENV=production
bin/rails assets:precompile db:migrate RAILS_ENV=production
Qui s'est exécuté a priori sans probleme
Quand je passe à l'étape :
user = Decidim::System::Admin.new(email: email, password: password, password_confirmation: password)
user = Decidim::System::Admin.new(email: email, password: password, password_confirmation: password)
ou
rails db:setup
j'ai une erreur comme si les schéma et table par défaut n'avaient pas été crées :
ctiveRecord::StatementInvalid (PG::UndefinedTable: ERROR: relation "decidim_system_admins" does not exist)
LINE 8: WHERE a.attrelid = '"decidim_system_admins"':...
^
ctiveRecord::StatementInvalid (PG::UndefinedTable: ERROR: relation "decidim_system_admins" does not exist)
LINE 8: WHERE a.attrelid = '"decidim_system_admins"':...
^
et
Creating seeds for decidim-core...
rails aborted!
ActiveRecord::StatementInvalid: PG::UndefinedTable: ERROR: relation "decidim_organizations" does not exist
LINE 1: SELECT "decidim_organizations".* FROM "decidim_organization...
rails aborted!
ActiveRecord::StatementInvalid: PG::UndefinedTable: ERROR: relation "decidim_organizations" does not exist
LINE 1: SELECT "decidim_organizations".* FROM "decidim_organization...
Comment installer la database par défaut ?
Signaler un contenu inapproprié
Ce contenu est-il inapproprié ?
Détails du commentaire
Vous ne voyez qu'un seul commentaire
Voir tous les commentaires
You could mention specific commands to check the databases in psql, like \l to list databases or \c database_name to connect to a specific database. https://slope3d.co/
Chargement des commentaires ...