ratchet_wrench v0.2.0 RatchetWrench.Model

Define struct module of record in database.

Examples

  defmodule Data do
    use RatchetWrench.Model

    schema do
      pk :data_id
      attributes data_id: {"STRING", nil},
        string: {"STRING", ""},
        bool: {"BOOL", nil },
        int: {"INT64", nil},
        float: {"FLOAT64", nil},
        date: {"DATE", nil},
        time_stamp: {"TIMESTAMP", nil}
    end

  end

Link to this section Summary

Link to this section Functions

Link to this macro

attribute(decl)

(macro)
Link to this macro

attributes(decl)

(macro)
Link to this macro

pk(pk)

(macro)
Link to this macro

schema(list)

(macro)
Link to this macro

table_name(table_name)

(macro)