Sha256: 860cae1ad1268c7569a3124f3d0307ac114ce5bc42f6247b33cd2db8fb1d7c85
Contents?: true
Size: 667 Bytes
Versions: 3
Compression:
Stored size: 667 Bytes
Contents
# # ActiveFacts MySQL Schema Generator # # Copyright (c) 2009-2016 Clifford Heath. Read the LICENSE file. # require 'digest/sha1' require 'activefacts/metamodel' require 'activefacts/compositions' require 'activefacts/generator/sql' require 'activefacts/generator/traits/sql/mysql' module ActiveFacts module Generators # Options are comma or space separated: # * underscore class SQL class MySQL < SQL prepend Traits::SQL::MySQL extend Traits::SQL::MySQL # Needed for class methods, like options end end publish_generator SQL::MySQL, "Generate a schema for MySQL using any relational compositor" end end
Version data entries
3 entries across 3 versions & 1 rubygems