We're looking to add a column to the table user
called admin
(boolean
) in an existing database.
migrations
[ | |
{ | |
"type": "node", | |
"node": { | |
"name": "塔塔加登山口", | |
"time": "09:00", | |
"stayTime": 0 | |
} | |
}, | |
{ |
const axios = require("axios"); | |
const querystring = require("querystring"); | |
const _ = require("lodash"); | |
const fs = require("fs"); | |
const path = require("path"); | |
const osmWays = [ | |
{ | |
// 三六九到黑森林入口 | |
id: 464086142, |
const osmWays = [ | |
{ | |
id: 411938960, | |
start: 1518876285, | |
end: 1518875913 | |
}, | |
{ | |
id: 464086142, | |
end: 1518876742 | |
} |
#!/bin/bash | |
project="pronect-name" | |
zone="us-east1-b" | |
cluster="cluster-name" | |
namespace="namespace-if-needed" | |
tput setaf 2; echo "Deploying..." | |
tput sgr0; |
import styled from 'styled-components'; | |
import { forDesktopDown } from '../../styles/breakpoints'; | |
export default styled.span` | |
&.display4 { | |
} | |
&.display3 { | |
font-size: 130px; | |
line-height: 130px; | |
${forDesktopDown} { |
# Default server configuration | |
# | |
server { | |
listen 80 default_server; | |
listen [::]:80 default_server; | |
# SSL configuration | |
# | |
# listen 443 ssl default_server; | |
# listen [::]:443 ssl default_server; |
{ | |
"extends": "airbnb", | |
"globals": { | |
"L": false // leaflet | |
}, | |
"rules": { | |
"react/jsx-filename-extension": [1, { "extensions": [".js", ".jsx"] }], | |
"react/prop-types": [0], | |
"import/no-extraneous-dependencies": [0] | |
} |
<?xml version="1.0" encoding="UTF-8"?> | |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> | |
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> | |
<head profile="http://selenium-ide.openqa.org/profiles/test-case"> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> | |
<link rel="selenium.base" href="http://railway.hinet.net/" /> | |
<title>訂票程式</title> | |
</head> | |
<body> | |
<table cellpadding="1" cellspacing="1" border="1"> |
const pino = require("pino"); | |
var pretty = pino.pretty(); | |
pretty.pipe(process.stdout); | |
var log = pino( | |
{ | |
name: "app", | |
safe: true | |
}, | |
pretty | |
); |