Sha256: a1154a70720c639571c538f8b9a3ab9c6a57134273c06a5c7897425076500576
Contents?: true
Size: 511 Bytes
Versions: 11
Compression:
Stored size: 511 Bytes
Contents
class CreateEasyMLDatasources < ActiveRecord::Migration[<%= ActiveRecord::Migration.current_version %>] def change unless table_exists?(:easy_ml_datasources) create_table :easy_ml_datasources do |t| t.string :name, null: false t.string :datasource_type t.string :root_dir t.json :configuration t.datetime :refreshed_at t.timestamps t.index :created_at t.index :datasource_type t.index :refreshed_at end end end end
Version data entries
11 entries across 11 versions & 1 rubygems