Sha256: bcafc1a880c7fbc95912d51c04d7f9249c9e1c18660ddd3abfe8123001a0a993

Contents?: true

Size: 542 Bytes

Versions: 10

Compression:

Stored size: 542 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: table_info
  table: your_table_name
  <<: *bigquery
- action: table_info
  prefix: your_table_name
  <<: *bigquery

Version data entries

10 entries across 10 versions & 1 rubygems

Version Path
bigquery_migration-0.2.2 example/table_info.yml
bigquery_migration-0.2.1 example/table_info.yml
bigquery_migration-0.2.0 example/table_info.yml
bigquery_migration-0.2.0.pre2 example/table_info.yml
bigquery_migration-0.2.0.pre1 example/table_info.yml
bigquery_migration-0.1.7 example/table_info.yml
bigquery_migration-0.1.6 example/table_info.yml
bigquery_migration-0.1.5 example/table_info.yml
bigquery_migration-0.1.4 example/table_info.yml
bigquery_migration-0.1.3 example/table_info.yml