mirror of
https://github.com/discourse/discourse.git
synced 2025-06-04 22:14:44 +08:00

* Splits the existing script into multiple classes * Adds command for generating IntermediateDB schema (`migrations/bin/cli schema generate`) * Changes the syntax of the IntermediateDB schema config * Adds validation for the schema config * It uses YAML schema aka JSON schema to validate the config file * It generates the SQL schema file and Ruby classes for storing data in the IntermediateDB
6 lines
138 B
Ruby
6 lines
138 B
Ruby
# frozen_string_literal: true
|
|
|
|
RSpec.describe ::Migrations::Database::IntermediateDB::Upload do
|
|
it_behaves_like "a database entity"
|
|
end
|