MCPcopy Create free account
hub / github.com/encrypted-spaces/prototype / column

Method column

sdk/src/schema.rs:124–126  ·  view source on GitHub ↗

Start building a new column within the schema, specifying the columns `name`, `type`, and special attributes.

(self, name: &str, column_type: ColumnType)

Source from the content-addressed store, hash-verified

122 /// Start building a new column within the schema, specifying
123 /// the columns `name`, `type`, and special attributes.
124 pub fn column(self, name: &str, column_type: ColumnType) -> ColumnBuilder {
125 ColumnBuilder::new(self, name, column_type)
126 }
127
128 /// Disable auto-increment on this table. Every insert must supply an
129 /// explicit `id`; the server will not allocate one, and the insert

Callers 15

schemasFunction · 0.45
app_schemasFunction · 0.45
schemasFunction · 0.45
schemasFunction · 0.45
schemasFunction · 0.45
app_schemasFunction · 0.45
action_schemasFunction · 0.45
create_textareaFunction · 0.45
create_hash_backed_spaceFunction · 0.45

Calls 1

finish_columnMethod · 0.80