Untitled
unknown
plain_text
a year ago
465 B
6
Indexable
Schema::create('shortcode', function (Blueprint $table) { $table->id(); $table->string('shortcode'); $table->text('consumer_key'); $table->text('consumer_secret'); $table->text('pass_key'); $table->text('type'); $table->boolean('c2b_status')->default(0); $table->foreignId('user_id')->constrained(); $table->softDeletes(); $table->timestamps();
Editor is loading...
Leave a Comment