The active record connection adapter should use migrations instead of auto config

Aperta
#348 0 commenti 0 reazioni 0 assegnatari Vedi su GitHub

Nessuno ha ancora preso questa issue.

Valutazione

Difficoltà
3/5
Tempo stimato
1-2 giorni
Idoneità per principianti
38/100
Tipo di issue
Refactoring
Chiarezza
Abbastanza chiara
Stato di attività
Ferma
Stack tecnologico
rails, ruby
Ambito
database

Direzione di ricerca

Individua l’AutoConfig della tabella Connection e l’installer o il generatore responsabile della configurazione. Confronta questi punti di ingresso con la migrazione mostrata nell’issue; il lavoro è completato quando l’installer aggiunge le tabelle richieste tramite una migrazione e AutoConfig non le crea più.

Scritto dal modello di indicizzazione a partire dal testo della issue.

Descrizione

enhancement

The Connection table AutoConfig keeps causing people problems.

This should be done via a migration that is added by the installer.

In the meantime you can easily turn off the autoconfig by adding this line to the end of your hyperstack.rb initializier:

def (Hyperstack::Connection).build_tables?; false; end

This will stop AutoConfig from building the tables, and the whole connection and broadcast mechanism will just not work (but will cause no problems) until the tables exist from the migration.

The migration would look like this:

class AddHyperstackTables < ActiveRecord::Migration[5.2]
  def change
    create_table "hyperstack_connections", force: :cascade do |t|
      t.string "channel"
      t.string "session"
      t.datetime "created_at"
      t.datetime "expires_at"
      t.datetime "refresh_at"
    end

    create_table "hyperstack_queued_messages", force: :cascade do |t|
      t.text "data"
      t.integer "connection_id"
    end
  end
end

Here is some info on creating the migration from the generator:

https://api.rubyonrails.org/classes/Rails/Generators/Migration.html

Lingua principale
JavaScript
Stelle
538
Fork
41
Metriche di merge delle PR
Nessuna PR unita negli ultimi 30g

Guida per i contributori

Apri la guida per i contributori

Come iniziare

  1. Leggi tutta la issue e poi la guida ai contributi del progetto.
  2. Commenta sulla issue per dire che te ne occupi tu — evita che due persone facciano lo stesso lavoro.
  3. Fai un fork del repository e lavora su un branch.
  4. Apri una pull request che faccia riferimento al numero della issue.

Altre issue di hyperstack-org/hyperstack

Tutte le issue di hyperstack-org/hyperstack

Issue simili

Altre issue su JavaScript

Ricevi le nuove issue nella tua casella

Un breve riepilogo di issue GitHub adatte ai principianti.