Sha256: 5bd2cdd417e9a716a134ce489570515dd179c1c6b87dae30566ed9b05033de56

Contents?: true

Size: 531 Bytes

Versions: 9

Compression:

Stored size: 531 Bytes

Contents

bigquery: &bigquery
  json_keyfile: example/your-project-000.json
  dataset: your_dataset_name
  table: your_table_name

actions:
- action: create_dataset
  <<: *bigquery
- action: migrate_table
  <<: *bigquery
  columns:
    - { name: 'timestamp', type: 'TIMESTAMP' }
    - name: 'record'
      type: 'RECORD'
      fields:
        - { name: 'string', type: 'STRING' }
        - { name: 'integer', type: 'INTEGER' }
- action: migrate_table
  <<: *bigquery
  schema_file: example/schema.json
- action: delete_table
  <<: *bigquery

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
bigquery_migration-0.1.2 example/migrate_table.yml
bigquery_migration-0.1.1 example/migrate_table.yml
bigquery_migration-0.1.0 example/migrate_table.yml
bigquery_migration-0.1.0.pre6 example/migrate_table.yml
bigquery_migration-0.1.0.pre5 example/example.yml
bigquery_migration-0.1.0.pre4 example/example.yml
bigquery_migration-0.1.0.pre3 example/example.yml
bigquery_migration-0.1.0.pre2 example/example.yml
bigquery_migration-0.1.0.pre1 example/example.yml