PluginProbe
ShopBuilder – WooCommerce Builder For Elementor / 3.2.6
ShopBuilder – WooCommerce Builder For Elementor v3.2.6
3.4.2 3.4.1 3.4.0 2.0.1 2.0.2 2.0.3 2.1.0 2.1.1 2.1.10 2.1.11 2.1.12 2.1.13 2.1.14 2.1.15 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2.0 2.2.1 2.2.2 All 63 releases
shopbuilder / vendor / codesvault / howdy-qb / src / Api / CreateInterface.php

CreateInterface.php in ShopBuilder – WooCommerce Builder For Elementor 3.2.6, at vendor/codesvault/howdy-qb/src/Api/CreateInterface.php

61 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 namespace CodesVault\Howdyqb\Api;
4
5 interface CreateInterface
6 {
7 public function column(string $column_name): self;
8
9 public function int(int $size = 255): self;
10
11 public function bigInt(int $size = 255): self;
12
13 public function double(): self;
14
15 public function boolean(): self;
16
17 public function string(int $size = 255): self;
18
19 public function text(int $size = 10000): self;
20
21 public function longText(): self;
22
23 public function json(): self;
24
25 public function required(): self;
26
27 public function nullable(): self;
28
29 public function primary($columns = []): self;
30
31 public function index(array $columns): self;
32
33 public function date(): self;
34
35 public function dateTime(): self;
36
37 public function timestamp($default = null, $on_update = null): self;
38
39 public function unsigned(): self;
40
41 public function autoIncrement(): self;
42
43 public function default($value): self;
44
45 public function enum(array $allowed): self;
46
47 public function decimal(int $precision = 8, int $scale = 2): self;
48
49 public function float(): self;
50
51 public function foreignKey(string $column, string $ref_table_column, ?string $on_delete = null): self;
52
53 public function onDelete(string $action): self;
54
55 public function unique(): self;
56
57 public function getSql();
58
59 public function execute();
60 }
61