Sha256: 69f5514fc2c73900afe0322f7889082ef96d8a774ca2720fb2b9c2fb237fdf55

Contents?: true

Size: 685 Bytes

Versions: 3

Compression:

Stored size: 685 Bytes

Contents

#
#       ActiveFacts PostgreSQL Schema Generator
#
# Copyright (c) 2017 Clifford Heath. Read the LICENSE file.
#
require 'digest/sha1'
require 'activefacts/metamodel'
require 'activefacts/compositions'
require 'activefacts/generator/sql'
require 'activefacts/generator/traits/sql/postgres'

module ActiveFacts
  module Generators
    # Options are comma or space separated:
    # * underscore 
    class SQL
      class Postgres < SQL
        prepend Traits::SQL::Postgres
        extend Traits::SQL::Postgres   # Needed for class methods, like options
      end

    end
    publish_generator SQL::Postgres, "Generate a schema for Postgres using any relational compositor"
  end
end

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
activefacts-compositions-1.9.23 lib/activefacts/generator/sql/postgres.rb
activefacts-compositions-1.9.22 lib/activefacts/generator/sql/postgres.rb
activefacts-compositions-1.9.21 lib/activefacts/generator/sql/postgres.rb