Added new function to field types.

This commit is contained in:
2022-08-12 18:57:57 -04:00
parent 69e311226e
commit dda166ecbe
3 changed files with 58 additions and 10 deletions

View File

@ -1,5 +1,5 @@
pub mod fieldtype;
pub mod error;
pub mod fieldtype;
use async_std::sync::{Arc, RwLock};
use error::MTTError;
@ -50,8 +50,7 @@ impl Table {
Self {}
}
async fn new_column(&self, _name: &str, _type: &str) {
}
async fn new_column(&self, _name: &str, _type: &str) {}
}
#[cfg(test)]