forked from devsonket/devsonket.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathprisma2.json
More file actions
89 lines (89 loc) · 3.09 KB
/
Copy pathprisma2.json
File metadata and controls
89 lines (89 loc) · 3.09 KB
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"id": "prisma2",
"title": "প্রিজমা২",
"slug": "prisma2",
"description": "প্রিজমা২ হল একটি ওপেন-সোর্স নেক্সট জেনারেশন নোডজেএস এবং টাইপস্ক্রিপ্ট ওআরএম",
"colorPref": "#1a202c",
"contents": [{
"title": "টাইপস (Types)",
"items": [{
"definition": "পূর্ণসংখ্যা",
"code": "Int"
},
{
"definition": "ফ্লোটিং পয়েন্ট সংখ্যা",
"code": "Float"
},
{
"definition": "এ সিকুয়েন্স অফ ইউনিকোড ক্যারেক্টারস",
"code": "String"
},
{
"definition": "স্কেলার লিস্ট",
"code": "[String]"
},
{
"definition": "বুলিয়ান",
"code": "Boolean"
},
{
"definition": "৮ বাইটের পূর্ণসংখ্যা",
"code": "BigInt"
},
{
"definition": "ডেসিমাল নাম্বার",
"code": "Decimal"
},
{
"definition": "টাইমস্ট্যাম্প",
"code": "Datetime"
},
{
"definition": "জেসন ডেটা",
"code": "Json"
},
{
"definition": "বাইট",
"code": "Bytes"
}
]
}, {
"title": "এট্রিবিউট (Attributes)",
"items": [{
"definition": "ইউনিক আইডি",
"code": "@id"
},
{
"definition": "ইউনিক",
"code": "@unique"
},
{
"definition": "রিলেশন",
"code": "@relation"
},
{
"definition": "আপডেট অন ক্রিয়েট",
"code": "@updatedAt"
},
{
"definition": "ইগনোর ক্রিয়েট",
"code": "@ignore"
}
]
}, {
"title": "ফাংশন (Functions)",
"items": [{
"definition": "ইউনিক আইডি এবং ইনক্রিমেন্ট",
"code": "@id @default(autoincrement())"
},
{
"definition": "ইউনিক আইডি এবং কলিশন রেজিস্টেন্ট আইডি",
"code": "@id @default(cuid())"
},
{
"definition": "বর্তমান টাইমস্ট্যাম্প",
"code": "@default(now())"
}
]
}]
}