Skip to content

Releases: scragly/everstone

v0.1.2

26 Mar 03:40
Compare
Choose a tag to compare
v0.1.2 Pre-release
Pre-release

Initial Pre-Release

New SQL objects

SQL Types

  • Integer
  • SmallInteger
  • BigInteger
  • Serial
  • BigSerial
  • Numeric
  • Decimal
  • Real
  • DoublePrecision
  • Money
  • Text
  • ByteA
  • Timestamp
  • TimestampTZ
  • Date
  • Time
  • Interval
  • Boolean
  • JSON
  • JSONB
  • Array

SQL Structures

  • Database
    • connect
    • disable_execution
    • enable_execution
    • execute
    • bound Schema
    • bound Table
  • Schema
    • create
    • drop
    • rename
    • add_table
    • bound Table
  • Table
    • create
    • drop
    • add_constraints
    • add_columns
    • bound Column
  • Column
    • definition
    • bind_table
    • aggregates
      • avg
      • count
      • max
      • min
      • sum
  • Constraints
    • Check
    • NotNull
    • Unique
    • PrimaryKey
    • ForeignKey
    • NamedConstraints
    • CompositeConstraints

SQL Functions

  • Aggregates
    • Avg
    • BitAnd
    • BitOr
    • BoolAnd
    • BoolOr
    • Count
    • Max
    • Min
    • Sum