积分充值
 首页
前端开发
AngularDartElectronFlutterHTML/CSSJavaScriptReactSvelteTypeScriptVue.js构建工具
后端开发
.NetC#C++C语言DenoffmpegGoIdrisJavaJuliaKotlinLeanMakefilenimNode.jsPascalPHPPythonRISC-VRubyRustSwiftUML其它语言区块链开发测试微服务敏捷开发架构设计汇编语言
数据库
Apache DorisApache HBaseCassandraClickHouseFirebirdGreenplumMongoDBMySQLPieCloudDBPostgreSQLRedisSQLSQLiteTiDBVitess数据库中间件数据库工具数据库设计
系统运维
AndroidDevOpshttpdJenkinsLinuxPrometheusTraefikZabbix存储网络与安全
云计算&大数据
Apache APISIXApache FlinkApache KarafApache KyuubiApache OzonedaprDockerHadoopHarborIstioKubernetesOpenShiftPandasrancherRocketMQServerlessService MeshVirtualBoxVMWare云原生CNCF机器学习边缘计算
综合其他
BlenderGIMPKiCadKritaWeblate产品与服务人工智能亿图数据可视化版本控制笔试面试
文库资料
前端
AngularAnt DesignBabelBootstrapChart.jsCSS3EchartsElectronHighchartsHTML/CSSHTML5JavaScriptJerryScriptJestReactSassTypeScriptVue前端工具小程序
后端
.NETApacheC/C++C#CMakeCrystalDartDenoDjangoDubboErlangFastifyFlaskGinGoGoFrameGuzzleIrisJavaJuliaLispLLVMLuaMatplotlibMicronautnimNode.jsPerlPHPPythonQtRPCRubyRustR语言ScalaShellVlangwasmYewZephirZig算法
移动端
AndroidAPP工具FlutterFramework7HarmonyHippyIoniciOSkotlinNativeObject-CPWAReactSwiftuni-appWeex
数据库
ApacheArangoDBCassandraClickHouseCouchDBCrateDBDB2DocumentDBDorisDragonflyDBEdgeDBetcdFirebirdGaussDBGraphGreenPlumHStreamDBHugeGraphimmudbIndexedDBInfluxDBIoTDBKey-ValueKitDBLevelDBM3DBMatrixOneMilvusMongoDBMySQLNavicatNebulaNewSQLNoSQLOceanBaseOpenTSDBOracleOrientDBPostgreSQLPrestoDBQuestDBRedisRocksDBSequoiaDBServerSkytableSQLSQLiteTiDBTiKVTimescaleDBYugabyteDB关系型数据库数据库数据库ORM数据库中间件数据库工具时序数据库
云计算&大数据
ActiveMQAerakiAgentAlluxioAntreaApacheApache APISIXAPISIXBFEBitBookKeeperChaosChoerodonCiliumCloudStackConsulDaprDataEaseDC/OSDockerDrillDruidElasticJobElasticSearchEnvoyErdaFlinkFluentGrafanaHadoopHarborHelmHudiInLongKafkaKnativeKongKubeCubeKubeEdgeKubeflowKubeOperatorKubernetesKubeSphereKubeVelaKumaKylinLibcloudLinkerdLonghornMeiliSearchMeshNacosNATSOKDOpenOpenEBSOpenKruiseOpenPitrixOpenSearchOpenStackOpenTracingOzonePaddlePaddlePolicyPulsarPyTorchRainbondRancherRediSearchScikit-learnServerlessShardingSphereShenYuSparkStormSupersetXuperChainZadig云原生CNCF人工智能区块链数据挖掘机器学习深度学习算法工程边缘计算
UI&美工&设计
BlenderKritaSketchUI设计
网络&系统&运维
AnsibleApacheAWKCeleryCephCI/CDCurveDevOpsGoCDHAProxyIstioJenkinsJumpServerLinuxMacNginxOpenRestyPrometheusServertraefikTrafficUnixWindowsZabbixZipkin安全防护系统内核网络运维监控
综合其它
文章资讯
 上传文档  发布文章  登录账户
IT文库
  • 综合
  • 文档
  • 文章

无数据

分类

全部综合其他(101)Weblate(90)后端开发(76)数据库(62)区块链(33)云计算&大数据(28)TiDB(22)OpenShift(18)系统运维(15)数据库中间件(14)

语言

全部中文(简体)(283)

格式

全部PDF文档 PDF(212)其他文档 其他(70)PPT文档 PPT(1)
 
本次搜索耗时 0.141 秒,为您找到相关结果约 283 个.
  • 全部
  • 综合其他
  • Weblate
  • 后端开发
  • 数据库
  • 区块链
  • 云计算&大数据
  • TiDB
  • OpenShift
  • 系统运维
  • 数据库中间件
  • 全部
  • 中文(简体)
  • 全部
  • PDF文档 PDF
  • 其他文档 其他
  • PPT文档 PPT
  • 默认排序
  • 最新排序
  • 页数排序
  • 大小排序
  • 全部时间
  • 最近一天
  • 最近一周
  • 最近一个月
  • 最近三个月
  • 最近半年
  • 最近一年
  • pdf文档 Laravel 5.2 中文文档

    Illuminate\Contracts\Routing\ResponseFactory Route Illuminate\Routing\Router router Schema Illuminate\Database\Schema\Blueprint 本文档由 Laravel 学院(LaravelAcademy.org)提供 Laravel 学院致力于提供优质 Laravel 1、简介 迁移就像数据库的版本控制,允许团队简单轻松的编辑并共享应用的数据库表结构,迁移 通常和 Laravel 的结构构建器结对从而可以很容易地构建应用的数据库表结构。 Laravel 的 Schema 门面提供了与数据库系统无关的创建和操纵表的支持,在 Laravel 所支 持的所有数据库系统中提供一致的、优雅的、平滑的 API。 2、生成迁移 使用 Artisan 命令 make:migration make:migration 来创建一个新的迁移: php artisan make:migration create_users_table 新的迁移位于 database/migrations 目录下,每个迁移文件名都包含时间戳从而允许 Laravel 判断其顺序。 --table 和--create 选项可以用于指定表名以及该迁移是否要创建一个新的数据表。这些 选项只需要简单放在上述迁移命令后面并指定表名:
    0 码力 | 377 页 | 4.56 MB | 1 年前
    3
  • pdf文档 Laravel 5.6 中文文档

    Response(实例) Illuminate\Http\Response Route Illuminate\Routing\Router router Schema Illuminate\Database\Schema\Builder Session Illuminate\Session\SessionManager session Session(实例) Ill 注:数组驱动通常用于运行测试以避免 Session 数据持久化。 驱动预备知识 数据库 当使用 database 作为 Session 驱动时,需要设置表包含 Session 字段,下面是该数据表的表结构声明: Schema::create('sessions', function ($table) { $table->string('id')->unique(); $table->unsign 所谓迁移就像是数据库的版本控制,这种机制允许团队简单轻松的编辑并共享应用的数据库表结构。迁移通常和 Laravel 的 schema 构建器结对从 而可以很容易地构建应用的数据库表结构。如果你曾经频繁告知团队成员需要手动添加列到本地数据库表结构以维护本地开发环境,那么这正是数据 库迁移所致力于解决的问题。 Laravel 的 Schema 门面提供了与数据库系统无关的创建和操纵表的支持,在 Laravel 所支持的所有数据库系统中提供一致的、优雅的、流式的
    0 码力 | 377 页 | 14.56 MB | 1 年前
    3
  • pdf文档 Laravel 6.0 中文文档

    中文学习资源:https://xueyuanjun.com 152 门面 类 服务容器绑定 Route Illuminate\Routing\Router router Schema Illuminate\Database\Schema\Builder Session Illuminate\Session\SessionManager session Session(实 例) Illuminate\Session\Store 注:数组驱动通常用于运行测试以避免 Session 数据持 久化。 驱动预备知识 数据库 当使用 database 作为 Session 驱动时,需要设置表包含 Session 字段,下面是该数据表的表结构声明: Schema::create('sessions', function ($table) { $table->string('id')->unique(); $table->unsignedIntege 于 Laravel Passport 实现的 API 认证。 配置 数据库准备 使用 token 驱动前,需要创建一个迁移用来添加 api_token 字段 到 users 数据表: Schema::table('users', function ($table) { $table->string('api_token', 80)->after('password ') ->unique()
    0 码力 | 1442 页 | 14.66 MB | 1 年前
    3
  • pdf文档 Laravel 5.1 中文文档

    Illuminate\Contracts\Routing\ResponseFactory Route Illuminate\Routing\Router router Schema Illuminate\Database\Schema\Blueprint Session Illuminate\Session\SessionManager session Session (Instance) 1、简介 迁移就像数据库的版本控制,允许团队简单轻松的编辑并共享应用的数据库表结构,迁移通 常和 Laravel 的结构构建器结对从而可以很容易地构建应用的数据库表结构。 Laravel 的 Schema 门面提供了与数据库系统无关的创建和操纵表的支持,在 Laravel 所支持 的所有数据库系统中提供一致的、优雅的、平滑的 API。 2、生成迁移 使用 Artisan 命令 make:migration make:migration 来创建一个新的迁移: php artisan make:migration create_users_table 新的迁移位于 database/migrations 目录下,每个迁移文件名都包含时间戳从而允许 Laravel 判断其顺序。 --table 和--create 选项可以用于指定表名以及该迁移是否要创建一个新的数据表。这些选 项只需要简单放在上述迁移命令后面并指定表名:
    0 码力 | 307 页 | 3.46 MB | 1 年前
    3
  • pdf文档 Laravel 5.3 中文文档

    Illuminate\Contracts\Routing\ResponseFactory Route Illuminate\Routing\Router router Schema Illuminate\Database\Schema\Blueprint Session Illuminate\Session\SessionManager session Session (Instance) 项,下面是该数据表的表结构声明: 本文档由 Laravel 学院(LaravelAcademy.org)提供 Laravel 学院致力于提供优质 Laravel 中文学习资源 156 Schema::create('sessions', function ($table) { $table->string('id')->unique(); $table->inte d trait 来包含实现该接口需要的方法。 生成重置令牌表迁移 接下来,用来存储密码重置令牌的表必须被创建,Laravel 已经自带了这张表的迁移,就存放 在 database/migrations 目录。所有,你所要做的仅仅是运行迁移: 本文档由 Laravel 学院(LaravelAcademy.org)提供 Laravel 学院致力于提供优质 Laravel 中文学习资源
    0 码力 | 691 页 | 9.37 MB | 1 年前
    3
  • epub文档 Weblate 4.2 用户文档

    some of the migration steps manually as a PostgreSQL superuser in schema Weblate will use: CREATE EXTENSION IF NOT EXISTS pg_trgm WITH SCHEMA weblate; Configuring Weblate to use PostgreSQL The settings 'database.example.com', # Set to empty string for default 'PORT': '', } } 2. Run migrations and drop any data inserted into the tables: weblate migrate --database=postgresql weblate sqlflush migrate Weblate database. 1. Adjust your settings.py to use PostgeSQL as a database. 2. Migrate the schema in the PostgreSQL database: weblate migrate weblate sqlflush | weblate dbshell 3. Run the pgloader
    0 码力 | 648 页 | 9.34 MB | 1 年前
    3
  • epub文档 Weblate 4.2.1 用户文档

    some of the migration steps manually as a PostgreSQL superuser in schema Weblate will use: CREATE EXTENSION IF NOT EXISTS pg_trgm WITH SCHEMA weblate; Configuring Weblate to use PostgreSQL The settings 'database.example.com', # Set to empty string for default 'PORT': '', } } 2. Run migrations and drop any data inserted into the tables: weblate migrate --database=postgresql weblate sqlflush migrate Weblate database. 1. Adjust your settings.py to use PostgeSQL as a database. 2. Migrate the schema in the PostgreSQL database: weblate migrate weblate sqlflush | weblate dbshell 3. Run the pgloader
    0 码力 | 650 页 | 9.34 MB | 1 年前
    3
  • epub文档 Weblate 4.2.2 用户文档

    some of the migration steps manually as a PostgreSQL superuser in schema Weblate will use: CREATE EXTENSION IF NOT EXISTS pg_trgm WITH SCHEMA weblate; Configuring Weblate to use PostgreSQL The settings 'database.example.com', # Set to empty string for default 'PORT': '', } } 2. Run migrations and drop any data inserted into the tables: weblate migrate --database=postgresql weblate sqlflush migrate Weblate database. 1. Adjust your settings.py to use PostgeSQL as a database. 2. Migrate the schema in the PostgreSQL database: weblate migrate weblate sqlflush | weblate dbshell 3. Run the pgloader
    0 码力 | 650 页 | 9.34 MB | 1 年前
    3
  • pdf文档 Weblate 4.2.1 用户文档

    some of the migration steps manually as a PostgreSQL superuser in schema Weblate will use: CREATE EXTENSION IF NOT EXISTS pg_trgm WITH SCHEMA weblate; Configuring Weblate to use PostgreSQL The settings localhost 'HOST': 'database.example.com', # Set to empty string for default 'PORT': '', } } 2. Run migrations and drop any data inserted into the tables: weblate migrate --database=postgresql weblate sqlflush migrate Weblate database. 1. Adjust your settings.py to use PostgeSQL as a database. 2. Migrate the schema in the PostgreSQL database: weblate migrate weblate sqlflush | weblate dbshell 3. Run the pgloader
    0 码力 | 411 页 | 4.60 MB | 1 年前
    3
  • pdf文档 Weblate 4.2.2 用户文档

    some of the migration steps manually as a PostgreSQL superuser in schema Weblate will use: CREATE EXTENSION IF NOT EXISTS pg_trgm WITH SCHEMA weblate; Configuring Weblate to use PostgreSQL The settings localhost 'HOST': 'database.example.com', # Set to empty string for default 'PORT': '', } } 2. Run migrations and drop any data inserted into the tables: weblate migrate --database=postgresql weblate sqlflush migrate Weblate database. 1. Adjust your settings.py to use PostgeSQL as a database. 2. Migrate the schema in the PostgreSQL database: weblate migrate weblate sqlflush | weblate dbshell 3. Run the pgloader
    0 码力 | 411 页 | 4.60 MB | 1 年前
    3
共 283 条
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 29
前往
页
相关搜索词
Laravel5.2中文文档5.66.05.15.3Weblate4.2用户用户文档
IT文库
关于我们 文库协议 联系我们 意见反馈 免责声明
本站文档数据由用户上传或本站整理自互联网,不以营利为目的,供所有人免费下载和学习使用。如侵犯您的权益,请联系我们进行删除。
IT文库 ©1024 - 2025 | 站点地图
Powered By MOREDOC AI v3.3.0-beta.70
  • 关注我们的公众号【刻舟求荐】,给您不一样的精彩
    关注我们的公众号【刻舟求荐】,给您不一样的精彩