Sha256: d7ba3f1c0aca6051e0a81b5e0e9bb859101dfeb7df99336c9957d5a68aaf7c42
Contents?: true
Size: 460 Bytes
Versions: 8
Compression:
Stored size: 460 Bytes
Contents
grammar SQLDropTable include SQLPrimitives include SQLRowSupport rule drop_table "DROP" (temporary)? SPACES "TABLE" SPACES table_name (restrict / cascade)? { def query_type :drop_table end def tree { :table => table_name.eval } end } end rule temporary SPACES "TEMPORARY" end rule restrict SPACES "RESTRICT" end rule cascade SPACES "CASCADE" end end
Version data entries
8 entries across 8 versions & 1 rubygems