-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.js
More file actions
29 lines (23 loc) · 684 Bytes
/
index.js
File metadata and controls
29 lines (23 loc) · 684 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
/*
* This file is part of the elegans/aeon package.
*
* Copyright (c) 2018, Nitish Kumar <mintu.nitish@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*
* @see https://github.com/elegans/aeon
*
* Created By: Nitish Kumar on 10/19/2018 3:05 PM
*/
// const Model = require('./src/Model');
//
// module.exports = Model;
const Schema = require('./src/Schema');
const bluePrint = require('./src/Schema/BluePrint');
let table = new bluePrint();
table.integer('id');
table.double('price');
table.string('jsondata');
table.text('resultData');
Schema.create('users', table.structure);